diff options
author | Martin Stransky <stransky@redhat.com> | 2020-12-10 20:02:09 +0100 |
---|---|---|
committer | Martin Stransky <stransky@redhat.com> | 2020-12-10 20:02:09 +0100 |
commit | feba2cc76d4b4cc1060fd30c9f39be6ba43c4007 (patch) | |
tree | 53b383aa8c1eb224010ddc0087d97a2ceea29b12 /print_subtest | |
parent | Disable global lto (diff) | |
download | librewolf-fedora-ff-feba2cc76d4b4cc1060fd30c9f39be6ba43c4007.tar.gz librewolf-fedora-ff-feba2cc76d4b4cc1060fd30c9f39be6ba43c4007.tar.bz2 librewolf-fedora-ff-feba2cc76d4b4cc1060fd30c9f39be6ba43c4007.zip |
Updated to Firefox 84
Diffstat (limited to 'print_subtest')
-rwxr-xr-x | print_subtest | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print_subtest b/print_subtest index 2870188..6657757 100755 --- a/print_subtest +++ b/print_subtest @@ -14,8 +14,8 @@ MARSKIP=`grep --text "Skipped:" $TEST_DIR/marionette$TEST_FLAVOUR | cut -d ' ' - 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 "INFO INFO | Passed:" $TEST_DIR/xpcshell$TEST_FLAVOUR | cut -d ' ' -f 7` -XPCFAIL=`grep --text "INFO INFO | Failed:" $TEST_DIR/xpcshell$TEST_FLAVOUR | cut -d ' ' -f 7` +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" CRPASS=`grep "REFTEST INFO | Successful:" $TEST_DIR/crashtest$TEST_FLAVOUR | cut -d ' ' -f 5` |