27e326995a
* Replace die_if_error() with the simpler die() * Attempt to clean up unnecessary trace output * Formatting cleanups on all exercise scripts Change-Id: I72a542b3a59ee9bf12bee6bcc605edd7579205e0
40 lines
838 B
Bash
Executable File
40 lines
838 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Tests for DevStack functions
|
|
|
|
TOP=$(cd $(dirname "$0")/.. && pwd)
|
|
|
|
# Import common functions
|
|
source $TOP/functions
|
|
|
|
# Import configuration
|
|
source $TOP/openrc
|
|
|
|
|
|
echo "Testing die_if_not_set()"
|
|
|
|
bash -cx "source $TOP/functions; X=`echo Y && true`; die_if_not_set X 'not OK'"
|
|
if [[ $? != 0 ]]; then
|
|
echo "die_if_not_set [X='Y' true] Failed"
|
|
else
|
|
echo 'OK'
|
|
fi
|
|
|
|
bash -cx "source $TOP/functions; X=`true`; die_if_not_set X 'OK'"
|
|
if [[ $? = 0 ]]; then
|
|
echo "die_if_not_set [X='' true] Failed"
|
|
fi
|
|
|
|
bash -cx "source $TOP/functions; X=`echo Y && false`; die_if_not_set X 'not OK'"
|
|
if [[ $? != 0 ]]; then
|
|
echo "die_if_not_set [X='Y' false] Failed"
|
|
else
|
|
echo 'OK'
|
|
fi
|
|
|
|
bash -cx "source $TOP/functions; X=`false`; die_if_not_set X 'OK'"
|
|
if [[ $? = 0 ]]; then
|
|
echo "die_if_not_set [X='' false] Failed"
|
|
fi
|
|
|