summaryrefslogtreecommitdiff
path: root/psummary
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2021-05-04 15:49:34 +0200
committerMartin Stransky <stransky@redhat.com>2021-05-04 15:49:34 +0200
commitc21308043168cbc1b97981c87205afd7f6bab4c6 (patch)
tree626c00071fd2c85cdcbcac24f3600ec196f35ab1 /psummary
parentAdded pciutils-libs req (rhbz#1955338), Enabled Wayland on KDE (rhbz#1922608) (diff)
downloadlibrewolf-fedora-ff-c21308043168cbc1b97981c87205afd7f6bab4c6.tar.gz
librewolf-fedora-ff-c21308043168cbc1b97981c87205afd7f6bab4c6.tar.bz2
librewolf-fedora-ff-c21308043168cbc1b97981c87205afd7f6bab4c6.zip
Added fix for WebRTC indicator - mozilla#1705048
Diffstat (limited to 'psummary')
-rwxr-xr-xpsummary8
1 files changed, 4 insertions, 4 deletions
diff --git a/psummary b/psummary
index 5e571b0..f64fc8f 100755
--- a/psummary
+++ b/psummary
@@ -4,10 +4,10 @@
TEST_DIR=$1
TEST_FLAVOUR=$2
-#MPASS=`grep "TEST_END: Test OK" $TEST_DIR/mochitest$TEST_FLAVOUR | wc -l`
-#MERR=`grep "TEST_END: Test ERROR" $TEST_DIR/mochitest$TEST_FLAVOUR | wc -l`
-#MUNEX=`grep "TEST-UNEXPECTED-FAIL" $TEST_DIR/mochitest$TEST_FLAVOUR | wc -l`
-#echo "Mochitest PASSED: $MPASS FAILED: $MERR UNEXPECTED-FAILURES: $MUNEX"
+MPASS=`grep "TEST_END: Test OK" $TEST_DIR/mochitest$TEST_FLAVOUR | wc -l`
+MERR=`grep "TEST_END: Test ERROR" $TEST_DIR/mochitest$TEST_FLAVOUR | wc -l`
+MUNEX=`grep "TEST-UNEXPECTED-FAIL" $TEST_DIR/mochitest$TEST_FLAVOUR | wc -l`
+echo "Mochitest PASSED: $MPASS FAILED: $MERR UNEXPECTED-FAILURES: $MUNEX"
XPCPASS=`grep --text "Expected results:" $TEST_DIR/xpcshell$TEST_FLAVOUR | cut -d ' ' -f 3`
XPCFAIL=`grep --text "Unexpected results:" $TEST_DIR/xpcshell$TEST_FLAVOUR | cut -d ' ' -f 3`
bgstack15