3433d8cfc3
The tests are also now dartfmt. Bug: https://github.com/dart-lang/sdk/issues/40040 Change-Id: I8dece8097b37b70d47a5374dae2f3fadb0fc4b90 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/134338 Commit-Queue: Jonas Termansen <sortie@google.com> Reviewed-by: Bob Nystrom <rnystrom@google.com>
45 lines
1.3 KiB
Dart
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({required bool closeStdout, required 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();
|
|
}
|