HyriseSQLParser/run_tests.sh

9 lines
208 B
Bash
Raw Normal View History

#!/bin/sh
2014-11-26 16:20:55 +01:00
echo "Compiling..."
make clean -C src/ >/dev/null
make tests -C src/ >/dev/null
2014-11-26 17:45:59 +01:00
make grammar_test -C src/ >/dev/null
2014-11-26 16:20:55 +01:00
echo "Running tests:"
2014-11-26 17:45:59 +01:00
./bin/grammar_test -f "test/valid_queries.sql"
./bin/tests