blob: 7a71d8af550b8757026947d0742d213db9206ac9 [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 String readLineSync({
/// Encoding encoding: systemEncoding,
/// bool retainNewlines: false
/// })
/// Default is [systemEncoding].
/// @description Checks that default encoding is system encoding
/// @author iarkh@unipro.ru
import "dart:io";
import "test.lib.dart";
List<int> expected = [1, 2, 3, 50, 60, 100, 124, 125, 126, 127];
String str = systemEncoding.decode(expected);
run_process(String filename) async {
String? res = stdin.readLineSync();
res = res ?? "";
File fl = new File(filename);
await fl.writeAsString(res);
}
String run(Process process) {
process.stdin.writeln(str);
return str;
}
main(List<String> args) {
args.length > 0 ? run_process(args[0]) : run_main(run, str);
}