test: remove flaky test (#5468)

This commit is contained in:
Sebastian Ullrich 2024-09-25 10:18:42 +02:00 committed by GitHub
parent 604bcf50ef
commit 1ec0c64c7b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 7 deletions

View file

@ -19,12 +19,6 @@ def usingIO {α} (x : IO α) : IO α := x
discard $ child.wait;
child.stdout.readToEnd
#eval usingIO do
let child ← spawn { cmd := "true", stdin := Stdio.piped };
discard $ child.wait;
child.stdin.putStrLn "ha!";
child.stdin.flush <|> IO.println "flush of broken pipe failed"
#eval usingIO do
-- produce enough output to fill both pipes on all platforms
let out ← output { cmd := "sh", args := #["-c", "printf '%100000s' >& 2; printf '%100001s'"] };

View file

@ -2,7 +2,6 @@
0
"ho!\n"
"hu!\n"
flush of broken pipe failed
100001
100000
0