From b195df18c739755c1389af3ea57f1f3d288a9e52 Mon Sep 17 00:00:00 2001
From: Jeff Garzik <jeff@bloq.com>
Date: Sat, 5 Jan 2019 11:21:09 -0500
Subject: [PATCH] Update tests, and exclude tst*.sql for now.

---
 Makefile.am | 4 +---
 test-ok.sh  | 2 +-
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index d796a7e..ee62ca7 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -27,9 +27,7 @@ EXTRA_DIST = sql.y sql.l \
 	ok7.sql \
 	ok8.sql \
 	ok9.sql \
-	ok10.sql \
-	tst-create-db.sql \
-	tst-create-table1.sql
+	ok10.sql
 
 sql_SOURCES = exec.c sql-parser.h
 sql_LDADD = @JANSSON_LIBS@
diff --git a/test-ok.sh b/test-ok.sh
index 0311a99..8ab6e5d 100755
--- a/test-ok.sh
+++ b/test-ok.sh
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-for testfn in $srcdir/ok*.sql $srcdir/tst-*.sql
+for testfn in $srcdir/ok*.sql
 do
 	cat $testfn | ./sql
 	if [ $? -ne 0 ]