diff options
| author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2024-04-15 18:04:10 +0200 |
|---|---|---|
| committer | Johannes Schindelin <johannes.schindelin@gmx.de> | 2024-04-17 00:00:54 +0200 |
| commit | ea094eec544171a732a30229eb98ec0ff92407f4 (patch) | |
| tree | 4197504682b7f70e9644aef5e13c2b9c2ececf74 | |
| parent | b12dcab61d0eaaffab6e5bb97667407a523c4b1f (diff) | |
| parent | c67cf4c434039f9b5c796f7e34345b75e0c14450 (diff) | |
| download | git-ea094eec544171a732a30229eb98ec0ff92407f4.tar.gz | |
Merge branch 'jk/test-lsan-denoise-output'
Tests with LSan from time to time seem to emit harmless message
that makes our tests unnecessarily flakey; we work it around by
filtering the uninteresting output.
* jk/test-lsan-denoise-output:
test-lib: ignore uninteresting LSan output
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
| -rw-r--r-- | t/test-lib.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh index 6db377f68b..251b22ba5a 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -334,6 +334,7 @@ nr_san_dir_leaks_ () { find "$TEST_RESULTS_SAN_DIR" \ -type f \ -name "$TEST_RESULTS_SAN_FILE_PFX.*" 2>/dev/null | + xargs grep -lv "Unable to get registers from thread" | wc -l } |
