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

Unified Diff: tests/corelib/bool_from_environment_default_value_test.dart

Issue 186573002: Revert "Fix fromEnvironment when called from isolates." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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
« no previous file with comments | « runtime/lib/string.cc ('k') | tests/corelib/int_from_environment_default_value_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib/bool_from_environment_default_value_test.dart
diff --git a/tests/corelib/bool_from_environment_default_value_test.dart b/tests/corelib/bool_from_environment_default_value_test.dart
index 1095e0e0f2149945ab8592a5f9a20d10429da8a4..f41252238f300526aa5fed7a4f8460db149aea65 100644
--- a/tests/corelib/bool_from_environment_default_value_test.dart
+++ b/tests/corelib/bool_from_environment_default_value_test.dart
@@ -2,21 +2,11 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-import "dart:isolate";
-
import "package:expect/expect.dart";
-void test(port) {
+main() {
Expect.isFalse(const bool.fromEnvironment('NOT_FOUND'));
Expect.isTrue(const bool.fromEnvironment('NOT_FOUND', defaultValue: true));
Expect.isFalse(const bool.fromEnvironment('NOT_FOUND', defaultValue: false));
Expect.isNull(const bool.fromEnvironment('NOT_FOUND', defaultValue: null));
- if (port != null) port.send(null);
-}
-
-main() {
- test(null);
- var port = new ReceivePort();
- Isolate.spawn(test, port.sendPort);
- port.listen((_) => port.close());
}
« no previous file with comments | « runtime/lib/string.cc ('k') | tests/corelib/int_from_environment_default_value_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698