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
279 B
Bash
Executable file
13 lines
279 B
Bash
Executable file
#!/bin/bash
|
|
|
|
expected='"Strings should be able to include spaces (and other stuff)!"'
|
|
actual=`echo ${expected} | target/psse 2>&1 | tail -1`
|
|
|
|
if [ "${expected}" = "${actual}" ]
|
|
then
|
|
echo "OK"
|
|
exit 0
|
|
else
|
|
echo "Fail: expected '$expected', got '$actual'"
|
|
exit 1
|
|
fi
|