blob: d77d8270af66ebbf11df2f3e98f8a37d92df8bcd [file] [log] [blame]
// Copyright (c) 2018, 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.
/// @assertion bool lineMode
/// Check if line mode is enabled on [stdin].
/// @description Checks that [lineMode] is a valid [boolean] value
/// @author iarkh@unipro.ru
/// @Issue 31932
import "../../../Utils/expect.dart";
import "dart:io";
run_process() {
exit(stdin.lineMode ? 0 : 1);
}
run_main() async {
String executable = Platform.resolvedExecutable;
String eScript = Platform.script.toString();
int called = -1;
await Process.run(
executable, [...Platform.executableArguments, eScript, "test"],
runInShell: true)
.then((ProcessResult results) {
called = results.exitCode;
if (called != 0 && called != 1) print(results.stderr);
});
Expect.isTrue(called == 0 || called == 1);
}
main(List<String> args) {
args.length > 0 ? run_process() : run_main();
}