This commit is contained in:
2026-06-24 13:47:14 +02:00
commit fd930e15cb
2377 changed files with 1213931 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#! /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 > /dev/null 2>&1
if [ $? -eq 139 ]; then
exit 0
else
exit 1
fi