summaryrefslogtreecommitdiff
path: root/tests/test_post
diff options
context:
space:
mode:
authorAndreas Dilger <adilger@whamcloud.com>2012-05-28 16:58:24 -0600
committerTheodore Ts'o <tytso@mit.edu>2012-05-29 08:41:26 -0400
commitf3331df6bb5d380efd72e07fc9b40c998b355412 (patch)
tree0749c4d2caf89f4eb5f1e0916d2eefea35302c64 /tests/test_post
parent182acd17bef0cf8dcb66568448a528abb1dfcd71 (diff)
downloade2fsprogs-f3331df6bb5d380efd72e07fc9b40c998b355412.tar.gz
tests: use make rules to run tests in parallel
Change the e2fsck/mke2fs/tune2fs/e2image/debugfs regression tests to be driven by Makefile rules instead of by a script loop. This allows the tests to be run in parallel like a build and reduces testing time significantly. One major change to the tests themselves is to printing the test name, description, and status together after the test has passed or failed, to avoid mixing lines from the tests. The other major change is to use unique temporary filenames for each test, which was mostly handled already via b4db1e4c7461a50e18c9fd135b9f1ba6f27e4390, but in some cases temporary files are changed to use $test_name.tmp to avoid any collision between running tests. On my old 2-CPU system it reduced the testing time from 160s to 40s. Much of the savings is from the MMP test delays running in parallel. It still takes the time of the slowest test, f_mmp_garbage, though there will be ongoing benefit in the future as more tests are added since the wallclock time will not increase linearly for each test. Tests were run with various combinations of "make -j", and "make -j2" through "make -j44" repeatedly without any test failures. Signed-off-by: Andreas Dilger <adilger@whamcloud.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'tests/test_post')
-rwxr-xr-xtests/test_post17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/test_post b/tests/test_post
new file mode 100755
index 00000000..12512663
--- /dev/null
+++ b/tests/test_post
@@ -0,0 +1,17 @@
+#!/bin/sh
+# report stats about test scripts that were run
+
+num_ok=`ls *.ok 2>/dev/null | wc -l`
+num_failed=`ls *.failed 2>/dev/null | wc -l`
+
+echo "$num_ok tests succeeded $num_failed tests failed"
+
+test "$num_failed" -eq 0 && exit 0
+
+echo -n "Tests failed: "
+for fname in $(ls *.failed); do
+ echo -n "${fname%%.failed} "
+done
+echo ""
+
+exit 1