Files
sdk/tests/standalone_2/io/stdio_implicit_close_test.dart
T
Alexander Markov f5c16512cc [Tests] Pass VM options (Platform.executableArguments) to sub-processes
When testing runs with certain set of VM options and tests launch
new Dart processes, VM options should be also forwarded to child
processes.

Change-Id: I7207fe87672cd61fd50d7ac77ef1da67744af183
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/97169
Auto-Submit: Alexander Markov <alexmarkov@google.com>
Reviewed-by: Régis Crelier <regis@google.com>
Commit-Queue: Alexander Markov <alexmarkov@google.com>
2019-03-18 23:20:41 +00:00

45 lines
1.3 KiB
Dart

// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// OtherResources=stdio_implicit_close_script.dart
import "package:async_helper/async_helper.dart";
import "package:expect/expect.dart";
import "dart:convert";
import "dart:io";
void test({bool closeStdout, bool closeStderr}) {
var scriptFile = "stdio_implicit_close_script.dart";
var script = Platform.script.resolve(scriptFile).toFilePath();
var arguments = <String>[]
..addAll(Platform.executableArguments)
..add(script);
if (closeStdout) arguments.add("stdout");
if (closeStderr) arguments.add("stderr");
asyncStart();
Process.run(Platform.executable, arguments,
stdoutEncoding: ascii, stderrEncoding: ascii)
.then((result) {
print(result.stdout);
print(result.stderr);
Expect.equals(0, result.exitCode);
Expect.isTrue(result.stdout.contains("APPLE"));
Expect.isTrue(result.stderr.contains("BANANA"));
asyncEnd();
});
}
void main() {
asyncStart();
test(closeStdout: false, closeStderr: false);
test(closeStdout: false, closeStderr: true);
test(closeStdout: true, closeStderr: false);
test(closeStdout: true, closeStderr: true);
asyncEnd();
}