Ai
1 Star 0 Fork 0

王新兵/postgres_exporter

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
postgres_exporter_integration_test_script 384 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
# This script wraps the integration test binary so it produces concatenated
# test output.
test_binary=$1
shift
output_cov=$1
shift
echo "Test Binary: $test_binary" 1>&2
echo "Coverage File: $output_cov" 1>&2
echo "mode: count" > $output_cov
test_cov=$(mktemp)
$test_binary -test.coverprofile=$test_cov $@ || exit 1
tail -n +2 $test_cov >> $output_cov
rm -f $test_cov
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wangxinbing/postgres_exporter.git
git@gitee.com:wangxinbing/postgres_exporter.git
wangxinbing
postgres_exporter
postgres_exporter
master

搜索帮助