the project root directory, which is still to be fixed; and *I think* known-failing tests which I don't intend to fix immediately should be marked in some way.
13 lines
224 B
Bash
Executable file
13 lines
224 B
Bash
Executable file
#!/bin/bash
|
|
|
|
expected=nil
|
|
actual=`echo 'nil' | target/psse 2>/dev/null | tail -1`
|
|
|
|
if [ "${expected}" = "${actual}" ]
|
|
then
|
|
echo "OK"
|
|
exit 0
|
|
else
|
|
echo "Fail: expected '${expected}', got '${actual}'"
|
|
exit 1
|
|
fi
|