| Index: tools/testing/dart/test_runner.dart
|
| diff --git a/tools/testing/dart/test_runner.dart b/tools/testing/dart/test_runner.dart
|
| index 0e4c13b3d3a4ad809cd844aca1c82a71e6937f18..9dd56f6e8a9c9759a158cded206be429817ba7d0 100644
|
| --- a/tools/testing/dart/test_runner.dart
|
| +++ b/tools/testing/dart/test_runner.dart
|
| @@ -15,14 +15,6 @@
|
| * - Evaluating the output of each test as pass/fail/crash/timeout.
|
| */
|
|
|
| -// Possible outcomes of running a test.
|
| -final CRASH = "Crash";
|
| -final TIMEOUT = "Timeout";
|
| -final FAIL = "Fail";
|
| -final PASS = "Pass";
|
| -// An indication to skip the test. The caller is responsible for skipping it.
|
| -final SKIP = "Skip";
|
| -
|
| final int NO_TIMEOUT = 0;
|
|
|
| String getDartShellFileName() {
|
| @@ -58,7 +50,7 @@ class TestCase {
|
| }
|
| }
|
|
|
| - bool get isNegative() => false;
|
| + bool get isNegative() => displayName.contains("NegativeTest");
|
|
|
| void completed() { completedHandler(this); }
|
| }
|
|
|