disable termout logging when debugging vm

This commit is contained in:
Ciro Santilli
2018-07-20 16:51:54 +01:00
parent e376e25ca2
commit 291de25ac7

5
run
View File

@@ -363,7 +363,10 @@ if "$tmux"; then
eval "./tmu ./rungdb -a '${arch} -L ${common_linux_variant}' -n ${common_run_id} ${tmux_args}"
fi
fi
cmd="time ${cmd} \\
cmd="time ${cmd}"
if ! "$debug_vm"; then
cmd="${cmd} \
|& tee >(ts -s %.s > ${common_termout_file}) \
"
fi
"${root_dir}/eeval" "$cmd" "${common_run_dir}/run.sh"