We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8b6164 commit b92da03Copy full SHA for b92da03
1 file changed
src/FileCheck.jl
@@ -93,7 +93,11 @@ function filecheck(f, input;
93
reader = Threads.@spawn String(read(filecheck_io))
94
Base.wait(proc)
95
log = strip(fetch(reader))
96
- isempty(log) || println(stderr, log)
+ if !isempty(log)
97
+ log = replace(log, path => "<checks>")
98
+ log = replace(log, "<stdin>" => "<output>")
99
+ println(stderr, log)
100
+ end
101
102
return success(proc)
103
end
0 commit comments