summaryrefslogtreecommitdiff
path: root/print_failures
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2021-01-05 18:44:28 +0100
committerMartin Stransky <stransky@redhat.com>2021-01-05 18:44:28 +0100
commitc8c93a4f8d39d51999266febe3d835fd09151023 (patch)
tree9488cdc0e8def8e3973401f0223238c546544b19 /print_failures
parent:x (diff)
parenttest tweaks (diff)
downloadlibrewolf-fedora-ff-c8c93a4f8d39d51999266febe3d835fd09151023.tar.gz
librewolf-fedora-ff-c8c93a4f8d39d51999266febe3d835fd09151023.tar.bz2
librewolf-fedora-ff-c8c93a4f8d39d51999266febe3d835fd09151023.zip
Merge branch 'master' into f33
Diffstat (limited to 'print_failures')
-rwxr-xr-xprint_failures7
1 files changed, 7 insertions, 0 deletions
diff --git a/print_failures b/print_failures
new file mode 100755
index 0000000..3827601
--- /dev/null
+++ b/print_failures
@@ -0,0 +1,7 @@
+#!/usr/bin/bash
+# Analyze and print test failures
+
+export TEST_DIR="test_results"
+
+./perrors $TEST_DIR ""
+./perrors $TEST_DIR "-wr"
bgstack15