Skip to content

Commit

Permalink
Properly capture process output
Browse files Browse the repository at this point in the history
  • Loading branch information
davidanthoff committed Jan 12, 2025
1 parent 1ed6575 commit 720e100
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/testprocess.jl
Original file line number Diff line number Diff line change
Expand Up @@ -376,8 +376,8 @@ function start(testprocess_id, testprocess_msg_channel, env::TestEnvironment, de
jl_process = open(
pipeline(
Cmd(`$(env.juliaCmd) $(env.juliaArgs) --check-bounds=yes --startup-file=no --history-file=no --depwarn=no $coverage_arg $testserver_script $pipe_name $(debug_pipe_name) $(error_handler_file...) $(crash_reporting_pipename...)`, detach=false, env=jlEnv),
# stdout = pipe_out,
# stderr = pipe_out
stdout = pipe_out,
stderr = pipe_out
)
)

Expand Down

0 comments on commit 720e100

Please sign in to comment.