HyriseSQLParser/test/test.sh

16 lines
285 B
Bash
Raw Normal View History

2016-02-27 16:40:24 +01:00
#!/bin/bash
2016-02-27 15:48:20 +01:00
# has to be executed from the root of the repository
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:./
bin/sql_grammar_test -f "test/lib/valid_queries.sql"
RET1=$?
bin/sql_tests
RET2=$?
if [[ $RET1 != 0 ]]; then exit $RET1; fi
if [[ $RET2 != 0 ]]; then exit $RET2; fi
exit 0