summaryrefslogtreecommitdiff
path: root/print_subtest
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2020-12-14 15:12:55 +0100
committerMartin Stransky <stransky@redhat.com>2020-12-14 15:12:55 +0100
commit21adcd98069a5e97c2e06362e84fe9a9205f674e (patch)
treeb7a09d937b341be8fb63c0c2b303feb4a5e1d537 /print_subtest
parentNss version up to 3.59 and remove old nss entries (diff)
downloadlibrewolf-fedora-ff-21adcd98069a5e97c2e06362e84fe9a9205f674e.tar.gz
librewolf-fedora-ff-21adcd98069a5e97c2e06362e84fe9a9205f674e.tar.bz2
librewolf-fedora-ff-21adcd98069a5e97c2e06362e84fe9a9205f674e.zip
Update to 84 B2, Test update
Diffstat (limited to 'print_subtest')
-rwxr-xr-xprint_subtest5
1 files changed, 0 insertions, 5 deletions
diff --git a/print_subtest b/print_subtest
index 6657757..f64fc8f 100755
--- a/print_subtest
+++ b/print_subtest
@@ -9,11 +9,6 @@ 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"
-MARPASS=`grep --text "Expected results:" $TEST_DIR/marionette$TEST_FLAVOUR | cut -d ' ' -f 3`
-MARSKIP=`grep --text "Skipped:" $TEST_DIR/marionette$TEST_FLAVOUR | cut -d ' ' -f 2`
-MARFAILED=`grep --text "Unexpected results:" $TEST_DIR/marionette$TEST_FLAVOUR | cut -d ' ' -f 3`
-echo "Marionette: PASSED: $MARPASS FAILED: $MARSKIP Known issues: $MARFAILED"
-
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`
echo "XPCShell: PASSED: $XPCPASS FAILED: $XPCFAIL"
bgstack15