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

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

Issue 11411150: Make the PackageRoot test file option relative to the test file. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years 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
« no previous file with comments | « no previous file | dart/tools/testing/dart/test_suite.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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=tests/standalone/package/packages/ 5 // PackageRoot=packages/
6 6
7 library package_isolate_test; 7 library package_isolate_test;
8 import 'package:shared.dart' as shared; 8 import 'package:shared.dart' as shared;
9 import 'dart:isolate'; 9 import 'dart:isolate';
10 import '../../../pkg/unittest/lib/unittest.dart'; 10 import '../../../pkg/unittest/lib/unittest.dart';
11 11
12 expectResponse() { 12 expectResponse() {
13 port.receive(expectAsync2((msg, r) { 13 port.receive(expectAsync2((msg, r) {
14 expect('isolate', msg); 14 expect('isolate', msg);
15 expect('main', shared.output); 15 expect('main', shared.output);
(...skipping 23 matching lines...) Expand all
39 sendPort.send('sendPort', port.toSendPort()); 39 sendPort.send('sendPort', port.toSendPort());
40 }); 40 });
41 } 41 }
42 42
43 void isolate_main() { 43 void isolate_main() {
44 shared.output = 'isolate'; 44 shared.output = 'isolate';
45 port.receive((msg, replyTo) { 45 port.receive((msg, replyTo) {
46 replyTo.send(shared.output); 46 replyTo.send(shared.output);
47 }); 47 });
48 } 48 }
OLDNEW
« no previous file with comments | « no previous file | dart/tools/testing/dart/test_suite.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698