We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b246e9 commit e7a0f4fCopy full SHA for e7a0f4f
test/runtests.jl
@@ -46,8 +46,15 @@ function runtests(testfiles=String[])
46
try
47
open(stdout_path, "w") do stdout_io
48
open(stderr_path, "w") do stderr_io
49
- proc = run(pipeline(Cmd(cmd; ignorestatus=true), stdout=stdout_io, stderr=stderr_io); wait=false)
50
- wait(proc)
+ try
+ proc = run(pipeline(Cmd(cmd), stdout=stdout_io, stderr=stderr_io); wait=false)
51
+ wait(proc)
52
+ catch ex
53
+ println("Test Error: an exception occurred while running the test file $f :")
54
+ println(ex)
55
+ nerror += 1
56
+ push!(errorfiles, f)
57
+ end
58
end
59
60
stdout_content = read(stdout_path, String)
0 commit comments