From 94dd242a27ed9ac9312237090894a443d9f0638d Mon Sep 17 00:00:00 2001 From: Kostyantyn Vorobyov <kostyantyn.vorobyov@cea.fr> Date: Thu, 4 Feb 2016 19:18:27 +0100 Subject: [PATCH] Minor stylistic changes in the e-acsl-gcc.sh wrapper script --- src/plugins/e-acsl/scripts/e-acsl-gcc.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/e-acsl/scripts/e-acsl-gcc.sh b/src/plugins/e-acsl/scripts/e-acsl-gcc.sh index 22865148c51..7086d5d3153 100755 --- a/src/plugins/e-acsl/scripts/e-acsl-gcc.sh +++ b/src/plugins/e-acsl/scripts/e-acsl-gcc.sh @@ -283,7 +283,7 @@ done shift; # Bail if no files to translate are given -if test -z "$1"; then +if [ -z "$1" ]; then error "no input files"; fi @@ -381,7 +381,7 @@ if [ -n "$OPTION_INSTRUMENT" ]; then fi # Compile -if test -n "$OPTION_COMPILE" ; then +if [ -n "$OPTION_COMPILE" ]; then # Compile the original files only if the instrumentation option is given, # otherwise the provided sources are assumed to be E-ACSL instrumented files if [ -n "$OPTION_INSTRUMENT" ]; then -- GitLab