ocaml/testsuite/tests/tool-ocamlopt-save-ir/start_from_emit.sh

15 lines
240 B
Bash
Executable File

#!/bin/sh
set -e
obj=start_from_emit.${objext}
# Check that obj is generated
if [ -e "$obj" ] ; then
test_result=${TEST_PASS}
else
echo "not found $obj" > ${ocamltest_response}
test_result=${TEST_FAIL}
fi
exit ${test_result}