blob: f19b8f5c01ca8bdc00f97081414b7c1b6cac1bb8 [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, [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();
}