summaryrefslogtreecommitdiff
path: root/tests/test_lib.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_lib.sh')
-rw-r--r--tests/test_lib.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_lib.sh b/tests/test_lib.sh
index 1e0a838..aab5ceb 100644
--- a/tests/test_lib.sh
+++ b/tests/test_lib.sh
@@ -59,10 +59,10 @@ function main {
$CREATE $IMGFILE $ORIGIN $TARGET && \
cd $ORIGIN && \
$DEPLOY $IMGFILE && \
- RET=$?
+ RETVAL=$?
cd $CWD
- if [ $RET -ne 0 ]
+ if test "x$RETVAL" != "x0"
then
echo $FAIL
echo "Could not create and deploy image." 1>&2
@@ -72,7 +72,7 @@ function main {
echo -n "$TEST_ID Checking $TEST_NAME results: "
check_results
- if [ $RET -ne 0 ]
+ if test "x$RETVAL" != "x0"
then
echo $FAIL
echo "Applying image did not produce the expected results" 1>&2