Files
ast-project/part2/queries/query18/test.sh
T
2026-06-24 13:47:14 +02:00

15 lines
203 B
Bash
Executable File

#! /bin/bash
if [ -z "$TEST_CASE_LOCATION" ]; then
SQL_FILE="query.sql"
else
SQL_FILE="$TEST_CASE_LOCATION"
fi
sqlite3-3.26.0 < $SQL_FILE 2>&1
if [ $? -eq 139 ]; then
exit 0
else
exit 1
fi