summaryrefslogtreecommitdiff
path: root/print_results
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2020-12-10 20:02:09 +0100
committerMartin Stransky <stransky@redhat.com>2020-12-10 20:02:09 +0100
commitfeba2cc76d4b4cc1060fd30c9f39be6ba43c4007 (patch)
tree53b383aa8c1eb224010ddc0087d97a2ceea29b12 /print_results
parentDisable global lto (diff)
downloadlibrewolf-fedora-ff-feba2cc76d4b4cc1060fd30c9f39be6ba43c4007.tar.gz
librewolf-fedora-ff-feba2cc76d4b4cc1060fd30c9f39be6ba43c4007.tar.bz2
librewolf-fedora-ff-feba2cc76d4b4cc1060fd30c9f39be6ba43c4007.zip
Updated to Firefox 84
Diffstat (limited to 'print_results')
-rwxr-xr-xprint_results14
1 files changed, 2 insertions, 12 deletions
diff --git a/print_results b/print_results
index c4c60ef..d0bb535 100755
--- a/print_results
+++ b/print_results
@@ -4,17 +4,7 @@
export TEST_DIR="test_results"
echo "Test results"
-echo "SW"
+echo "Basic compositor"
./print_subtest "test_results" ""
-echo "WR"
+echo "WebRender"
./print_subtest "test_results" "-wr"
-echo "General"
-
-UNPASS=`grep "cppunittests INFO | Passed:" $TEST_DIR/cppunittest | cut -d ' ' -f 5`
-UNFAIL=`grep "cppunittests INFO | Failed:" $TEST_DIR/cppunittest | cut -d ' ' -f 5`
-echo "CPP UNIT: PASSED: $UNPASS FAILED: $UNFAIL"
-
-JSPASS=`grep "TEST-PASS" $TEST_DIR/jsapi | wc -l`
-echo "JSAPI: PASSED: $JSPASS"
-
-echo "JStests: "`tail -n 1 $TEST_DIR/jstests`
bgstack15