File indexing completed on 2024-05-19 05:42:06

0001 #!/bin/sh
0002 
0003 TEST_DIR="lvtclp"
0004 TEST_PREFIX="test_ct_lvtclp_"
0005 TESTS="
0006 field
0007 function
0008 namespace
0009 relationships
0010 sourcefile
0011 udt
0012 var
0013 "
0014 
0015 for name in $TESTS; do
0016     path="$TEST_DIR/${TEST_PREFIX}$name"
0017     if ! "$path"; then
0018         echo "TEST FAILED: $path" >&2
0019         exit 1
0020     fi
0021 done