Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Unified Diff: tests/compiler/dart2js/dart2js_batch2_test.dart

Issue 2939063002: Strong mode cleaning of many dart2js tests. (Closed)
Patch Set: Use ClassElement. Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/compiler/dart2js/dart2js_batch2_test.dart
diff --git a/tests/compiler/dart2js/dart2js_batch2_test.dart b/tests/compiler/dart2js/dart2js_batch2_test.dart
index 9aeec1d52cae2a4e3d150c972abe6197c56c28bc..0fac8aa1a6d17d843f99eb6a74f4aaa876a5a479 100644
--- a/tests/compiler/dart2js/dart2js_batch2_test.dart
+++ b/tests/compiler/dart2js/dart2js_batch2_test.dart
@@ -67,14 +67,11 @@ Future runTests(Process process) {
Future<String> errorOut = process.stderr.transform(UTF8.decoder).join();
return Future.wait([output, errorOut]).then((result) {
String stdoutOutput = result[0];
- String stderrOutput = result[1];
-
Expect.isFalse(stdoutOutput.contains("crashed"));
});
}
void main() {
- var tmpDir;
asyncTest(() {
return setup().then(launchDart2Js).then(runTests).whenComplete(cleanUp);
});

Powered by Google App Engine
This is Rietveld 408576698