diff options
author | Martin Stransky <stransky@redhat.com> | 2020-11-23 22:08:56 +0100 |
---|---|---|
committer | Martin Stransky <stransky@redhat.com> | 2020-11-23 22:08:56 +0100 |
commit | 8751eb0f1d1e0789fa4e49260baf6a1622f21c59 (patch) | |
tree | e0b2d73419fc5f8f00680705f8621c339d87191f /print_results_general | |
parent | Updated tests (diff) | |
download | librewolf-fedora-ff-8751eb0f1d1e0789fa4e49260baf6a1622f21c59.tar.gz librewolf-fedora-ff-8751eb0f1d1e0789fa4e49260baf6a1622f21c59.tar.bz2 librewolf-fedora-ff-8751eb0f1d1e0789fa4e49260baf6a1622f21c59.zip |
Added missing sources
Diffstat (limited to 'print_results_general')
-rwxr-xr-x | print_results_general | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/print_results_general b/print_results_general new file mode 100755 index 0000000..07fdab8 --- /dev/null +++ b/print_results_general @@ -0,0 +1,22 @@ +#!/usr/bin/bash +# Analyze and print general test results + +TEST_DIR="test_general" + +echo "Cppunittests:" +grep "cppunittests INFO | Passed:" $TEST_DIR/cppunittest +grep "cppunittests INFO | Failed:" $TEST_DIR/cppunittest +echo " " + +echo "JSAPI test:" +echo -n "PASSED: " +grep "TEST-PASS" $TEST_DIR/jsapi | wc -l +echo " " + +echo "JStests test:" +tail -n 1 $TEST_DIR/jstests +echo " " + +echo "Rust tests" +grep "test result:" $TEST_DIR/rusttests +echo " " |