diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-05-24 19:39:38 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-05-24 19:39:38 -0700 |
commit | f37d9598789af3964ed37b855fabbfab84088bc2 (patch) | |
tree | 8343461288f530b1678580d20226ed495069174e /t/t4216-log-bloom.sh | |
parent | 4cf237c0d4cc17a1a49023eb0b3a4051b8978450 (diff) | |
parent | 784ce03d5566194880b022f849bb58711c479ef3 (diff) | |
download | git-f37d9598789af3964ed37b855fabbfab84088bc2.tar.gz |
Merge branch 'gs/commit-graph-path-filter'
Test fix.
* gs/commit-graph-path-filter:
t4216: avoid unnecessary subshell in test_bloom_filters_not_used
Diffstat (limited to 't/t4216-log-bloom.sh')
-rwxr-xr-x | t/t4216-log-bloom.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t4216-log-bloom.sh b/t/t4216-log-bloom.sh index 21b68dd6c8..c855bcd3e7 100755 --- a/t/t4216-log-bloom.sh +++ b/t/t4216-log-bloom.sh @@ -70,7 +70,7 @@ test_bloom_filters_used () { test_bloom_filters_not_used () { log_args=$1 setup "$log_args" && - !(grep -q "statistics:{\"filter_not_present\":" "$TRASH_DIRECTORY/trace.perf") && + ! grep -q "statistics:{\"filter_not_present\":" "$TRASH_DIRECTORY/trace.perf" && test_cmp log_wo_bloom log_w_bloom } |