12 lines
229 B
Bash
Executable File
12 lines
229 B
Bash
Executable File
#!/bin/bash
|
|
checkForCppUTestEnvVariable() {
|
|
if [ -z "$CPPUTEST_HOME" ] ; then
|
|
echo "CPPUTEST_HOME not set"
|
|
exit 1
|
|
fi
|
|
if [ ! -d "$CPPUTEST_HOME" ] ; then
|
|
echo "CPPUTEST_HOME not set to a directory"
|
|
exit 2
|
|
fi
|
|
}
|