Add `// skip:` annotation to read_byte_eof.wren, read_line.wren, and read_line_eof.wren to prevent test failures on non-linux platforms until the underlying issue is fixed.
11 lines
171 B
Plaintext
11 lines
171 B
Plaintext
// skip:
|
|
import "io" for Stdin
|
|
|
|
Stdin.readLine() // stdin: one line
|
|
|
|
var error = Fiber.new {
|
|
Stdin.readLine()
|
|
}.try()
|
|
|
|
System.print(error) // expect: Stdin was closed.
|