Switch to stderr for failed tests

This commit is contained in:
Stefan Schindler 2021-07-01 16:46:14 +02:00
parent e540aa08b4
commit eca2b3be3d

View file

@ -75,7 +75,7 @@ function print_test_successful() {
}
function print_test_erroneous() {
process.stdout.write("F");
process.stderr.write("F");
}
async function main(argv) {