From cce7254f41cff419959eb7a8ec0fb34de4c1065c Mon Sep 17 00:00:00 2001 From: Arnaud Blanchard <arnaud.blanchard@ensea.fr> Date: Fri, 4 Oct 2019 00:51:00 +0200 Subject: [PATCH] Remove checking which blocks the installation. The error is only with check_all.sh not check ??.. --- check.sh => check_old.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename check.sh => check_old.sh (93%) diff --git a/check.sh b/check_old.sh similarity index 93% rename from check.sh rename to check_old.sh index 7ae6df5..453db85 100755 --- a/check.sh +++ b/check_old.sh @@ -30,7 +30,7 @@ LOG=$(mktemp) || exit 1 trap 'cat $LOG && rm -f "$LOG"' EXIT INT HUP TERM $blaar_dir/compile.sh t_parse_args 2>&1> $LOG || { error = $?; test $error == 127 && echo "already compiled" || exit $error; } -$blaar_dir/bin/t_parse_args "arg1" "arg2" 2> t_parse_args/test_result.log || { echo "Error executing 't_parse_args':"; cat t_parse_args/test_result.log; } +$blaar_dir/bin/t_parse_args "argdqskn1" "arg2" 2> t_parse_args/test_result.log || { echo "Error executing 't_parse_args':"; cat t_parse_args/test_result.log; } git diff --exit-code t_parse_args/test_result.log || { echo "ERROR: The result of 't_parse_args' is not the one expected"; exit 3; } echo echo "- t_parse_args: compilation:OK, execution:OK, result OK" -- GitLab