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

Side by Side Diff: tests/standalone/io/signals_test.dart

Issue 2466363003: Allow Platform.executable for JIT app snapshots. (Closed)
Patch Set: . Created 4 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
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 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 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 // OtherResources=signal_test_script.dart
6 // OtherResources=signals_test_script.dart
7
5 import "dart:io"; 8 import "dart:io";
6 import "dart:convert"; 9 import "dart:convert";
7 10
8 import "package:expect/expect.dart"; 11 import "package:expect/expect.dart";
9 import "package:async_helper/async_helper.dart"; 12 import "package:async_helper/async_helper.dart";
10 13
11 void testSignals(int usr1Expect, 14 void testSignals(int usr1Expect,
12 int usr2Expect, 15 int usr2Expect,
13 [int usr1Send, 16 [int usr1Send,
14 int usr2Send, 17 int usr2Send,
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 testSignal(ProcessSignal.SIGWINCH); 128 testSignal(ProcessSignal.SIGWINCH);
126 129
127 testMultipleSignals([ 130 testMultipleSignals([
128 ProcessSignal.SIGHUP, 131 ProcessSignal.SIGHUP,
129 ProcessSignal.SIGINT, 132 ProcessSignal.SIGINT,
130 ProcessSignal.SIGTERM, 133 ProcessSignal.SIGTERM,
131 ProcessSignal.SIGUSR1, 134 ProcessSignal.SIGUSR1,
132 ProcessSignal.SIGUSR2, 135 ProcessSignal.SIGUSR2,
133 ProcessSignal.SIGWINCH]); 136 ProcessSignal.SIGWINCH]);
134 } 137 }
OLDNEW
« no previous file with comments | « tests/standalone/io/secure_unauthorized_test.dart ('k') | tests/standalone/io/skipping_dart2js_compilations_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698