3dcf5eb705
This update brings streamlined ucl emitter support
12 lines
318 B
Bash
Executable File
12 lines
318 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PROG=${TEST_BINARY_DIR}/test_streamline
|
|
|
|
$PROG ${TEST_OUT_DIR}/streamline.out
|
|
diff -s ${TEST_OUT_DIR}/streamline.out ${TEST_DIR}/streamline.res -u 2>/dev/null
|
|
if [ $? -ne 0 ] ; then
|
|
rm ${TEST_OUT_DIR}/streamline.out
|
|
echo "Test: streamline.res output missmatch"
|
|
exit 1
|
|
fi
|
|
rm ${TEST_OUT_DIR}/streamline.out |