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

Side by Side Diff: dart/tests/standalone/package/package_test.dart

Issue 11359187: Allow tests to specify a package root. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix bug and add workaround Created 8 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // PackageRoot=none
6
5 #library('package_test'); 7 #library('package_test');
6 8
7 #import('package:lib1.dart'); 9 #import('package:lib1.dart');
8 #import('package:shared.dart'); 10 #import('package:shared.dart');
9 11
10 void main() { 12 void main() {
11 output = 'main'; 13 output = 'main';
12 // Call an imported lib, which will in turn call some others. 14 // Call an imported lib, which will in turn call some others.
13 lib1(); 15 lib1();
14 16
15 // Make sure they were all reached successfully. 17 // Make sure they were all reached successfully.
16 Expect.equals(output, 'main|lib1|lib2|lib3'); 18 Expect.equals(output, 'main|lib1|lib2|lib3');
17 } 19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698