Skip to content
Snippets Groups Projects
Commit 08da2c1e authored by Virgile Prevosto's avatar Virgile Prevosto
Browse files

[ptests] explicit error message in case of timeout

parent d3e58e5c
No related branches found
No related tags found
No related merge requests found
...@@ -1110,6 +1110,16 @@ let command_string command = ...@@ -1110,6 +1110,16 @@ let command_string command =
in in
let res = Filename.sanitize (log_prefix ^ ".res.log") in let res = Filename.sanitize (log_prefix ^ ".res.log") in
let command_string = command_string ^ " >" ^ res in let command_string = command_string ^ " >" ^ res in
let command_string =
match command.timeout with
| "" -> command_string
| s ->
Printf.sprintf
"%s; if test $? -eq 124; then \
echo 'TIMEOUT (%s); ABORTING EXECUTION' > %s; \
fi"
command_string s (Filename.sanitize stderr)
in
let command_string = match filter with let command_string = match filter with
| None -> command_string | None -> command_string
| Some filter -> | Some filter ->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment