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

Unified Diff: editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/DartCoreTest.java

Issue 12377052: Add the editor unit tests to the editor itself. The editor can now test itself (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 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
Index: editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/DartCoreTest.java
===================================================================
--- editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/DartCoreTest.java (revision 19335)
+++ editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/DartCoreTest.java (working copy)
@@ -38,7 +38,8 @@
public class DartCoreTest extends TestCase {
public static boolean isRunningOnBuildBot() {
- return System.getProperty("user.name").startsWith("chrome");
+ return System.getProperty("user.name").startsWith("chrome")
+ || System.getProperty("dart.buildbot") != null;
}
public void test_DartCore_create_file_notNull() {

Powered by Google App Engine
This is Rietveld 408576698