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

Side by Side Diff: tests/standalone/issue14236_source.dart

Issue 506753003: Add a version number for full and script snapshots. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/vm/snapshot.cc ('k') | tests/standalone/issue14236_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
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.
4 //
5 // This is the original dart program that was used to generate the snapshot
6 // in file issue14236_test.dart
7 // The original test/main has been commented out and we have a test/main which
8 // throws an error to ensure that this file is not executed as part of the
9 // test.
10 //
11 // When issue14236_test.dart fails, you must regenerate it using the VM
12 // with your changes. You should understand what in your change makes
13 // regeneration of the snapshot necessary.
14 // Steps for regenerating:
15 // 1) Swap the test functions below.
16 // 2) $ ./xcodebuild/DebugIA32/dart --package-root=./xcodebuild/DebugIA32/packag es --snapshot=tests/standalone/issue14236_test.dart tests/standalone/issue14236_ source.dart
17 // OR:
18 // 2) $ ./out/DebugIA32/dart --package-root=./out/DebugIA32/packages --snapshot= tests/standalone/issue14236_test.dart tests/standalone/issue14236_source.dart
19 // 3) Undo changes in 1.
20
21 library test.issue14236;
22 import "dart:isolate";
23 import "package:expect/expect.dart";
24 import "package:async_helper/async_helper.dart";
25
26
27 /*
28 test(SendPort replyTo) {
29 replyTo.send("from Isolate");
30 }
31 */
32
33 test(dummy) {
34 Expect.fail("Don't expect this to run at all");
35 }
36
37 main() {
38 asyncStart();
39 ReceivePort port = new ReceivePort();
40 Isolate.spawn(test, port.sendPort);
41 port.first.then((msg) {
42 Expect.equals("from Isolate", msg);
43 asyncEnd();
44 });
45 }
OLDNEW
« no previous file with comments | « runtime/vm/snapshot.cc ('k') | tests/standalone/issue14236_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698