We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3269bd0 commit 92cc55aCopy full SHA for 92cc55a
test/spawn.jl
@@ -458,3 +458,11 @@ end
458
459
# readlines(::Cmd), accidentally broken in #20203
460
@test sort(readlines(`$lscmd -A`)) == sort(readdir())
461
+
462
+# issue #19864 (PR #20497)
463
+@test readchomp(pipeline(ignorestatus(
464
+ `$exename --startup-file=no -e '
465
+ struct Error19864 <: Exception; end
466
+ Base.showerror(io::IO, e::Error19864) = print(io, "correct19864")
467
+ throw(Error19864())'`),
468
+ stderr=catcmd)) == "ERROR: correct19864"
0 commit comments