Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/webaudio/unit-tests/audit-failures-expected.txt |
| diff --git a/third_party/WebKit/LayoutTests/webaudio/unit-tests/audit-failures-expected.txt b/third_party/WebKit/LayoutTests/webaudio/unit-tests/audit-failures-expected.txt |
| index 95b429892dac77bbc7b6b3aa98f5d4e3c589056c..5589ac470bc17a99e68326416c48342237fe8767 100644 |
| --- a/third_party/WebKit/LayoutTests/webaudio/unit-tests/audit-failures-expected.txt |
| +++ b/third_party/WebKit/LayoutTests/webaudio/unit-tests/audit-failures-expected.txt |
| @@ -2,23 +2,23 @@ CONSOLE ERROR: line 39: [audit.js] this test requires the explicit comparison wi |
| This is a testharness.js-based test. |
| PASS # AUDIT TASK RUNNER STARTED. |
| PASS > [basic-failure] Testing basic assertion failures. |
| -FAIL X Setting foo to bar incorrectly threw ReferenceError: "bar is not defined". assert_true: expected true got false |
| -FAIL X function () { var foo = 0; } did not throw an exception. assert_true: expected true got false |
| -FAIL X 3 < 5 is not true. assert_true: expected true got false |
| -FAIL X true is not false. assert_true: expected true got false |
| -FAIL X 1 is not equal to 2. assert_true: expected true got false |
| -FAIL X 1 should not be equal to 1. assert_true: expected true got false |
| -FAIL X typeof 3.141592 is not equal to string. assert_true: expected true got false |
| -FAIL X 1 is not greater than 2. assert_true: expected true got false |
| -FAIL X 1 is not greater than or equal to 2. assert_true: expected true got false |
| -FAIL X 2 is not less than 1. assert_true: expected true got false |
| -FAIL X 2 is not less than or equal to 1. assert_true: expected true got false |
| -FAIL X Decoding audio data with no argument rejected incorrectly with TypeError: Failed to execute 'decodeAudioData' on 'BaseAudioContext': 1 argument required, but only 0 present.. assert_true: expected true got false |
| -FAIL X undefined resolved incorrectly. assert_true: expected true got false |
| +FAIL X Setting foo to bar incorrectly threw ReferenceError: "bar is not defined". Got function () { var foo = bar; }. assert_true: expected true got false |
| +FAIL X function () { var foo = 0; } did not throw an exception. Got function () { var foo = 0; }. assert_true: expected true got false |
|
Raymond Toy
2016/12/21 18:58:12
For notThrow() and throw(), would it make sense no
hongchan
2016/12/21 21:30:02
Done.
|
| +FAIL X 3 < 5 is not true. Got false. assert_true: expected true got false |
| +FAIL X true is not false. Got true. assert_true: expected true got false |
| +FAIL X one is not equal to 2. Got 1. assert_true: expected true got false |
| +FAIL X 1 should not be equal to 1. Got 1. assert_true: expected true got false |
| +FAIL X typeof 3.141592 is not equal to string. Got number. assert_true: expected true got false |
| +FAIL X 1 is not greater than 2. Got 1. assert_true: expected true got false |
| +FAIL X 1 is not greater than or equal to 2. Got 1. assert_true: expected true got false |
| +FAIL X 2 is not less than 1. Got 2. assert_true: expected true got false |
| +FAIL X 2 is not less than or equal to 1. Got 2. assert_true: expected true got false |
| +FAIL X Decoding audio data with no argument rejected incorrectly with TypeError: Failed to execute 'decodeAudioData' on 'BaseAudioContext': 1 argument required, but only 0 present.. Got undefined. assert_true: expected true got false |
| +FAIL X undefined resolved incorrectly. Got undefined. assert_true: expected true got false |
| FAIL < [basic-failure] 13 out of 13 assertions were failed. assert_true: expected true got false |
| PASS > [numerical-failures] Testing numerical assertion failures. |
| -FAIL X 0 is not close to 0.1 within an error of 0 assert_true: expected true got false |
| -FAIL X Expected 5 for all values but found 7 unexpected values. : |
| +FAIL X 0 is not close to 0.1 within an error of 0. Got 0. assert_true: expected true got false |
| +FAIL X Expected 5 for all values but found 7 unexpected values: |
| Index Actual |
| [0] 1 |
| [1] 8 |