summaryrefslogtreecommitdiff
path: root/tester.in
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2023-12-13 21:57:53 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2024-01-23 21:20:44 +0300
commitfc3fb39c90ab7fe5fccbe3f3bc0eb2645157bb96 (patch)
tree6c8c1bfb5fe89f7378b92ac066b4ca8ecfd25228 /tester.in
parent02367faedb16b6186e8852de47e5b749dc48c2df (diff)
Switch to build2
Diffstat (limited to 'tester.in')
-rwxr-xr-xtester.in51
1 files changed, 0 insertions, 51 deletions
diff --git a/tester.in b/tester.in
deleted file mode 100755
index a83db1b..0000000
--- a/tester.in
+++ /dev/null
@@ -1,51 +0,0 @@
-#! /bin/sh
-
-# file : tester.in
-# license : GNU GPL v2; see accompanying LICENSE file
-
-#
-# Run an ODB test. The test driver is in the current directory. The
-# data files, if any, are in $srcdir.
-#
-
-db_driver="$top_builddir/@database@-driver"
-db_options="$top_builddir/@database@.options"
-
-# Globbing returns files in alphabetic order.
-#
-for f in `echo test*.sql`; do
- if test -f $f; then
- $db_driver $f
-
- if test $? -ne 0; then
- exit 1
- fi
- fi
-done
-
-echo ./driver --options-file "$db_options"
-
-std=
-if test -f "$srcdir/test-@database@.std"; then
- std="$srcdir/test-@database@.std"
-elif test -f "$srcdir/test.std"; then
- std="$srcdir/test.std"
-else
- std=
-fi
-
-if test -n "$std"; then
- ./driver --options-file "$db_options" >test.out
-
- if test $? -ne 0; then
- rm -f test.out
- exit 1
- fi
-
- @DIFF@ @DIFFFLAGS@ "$std" test.out
- r=$?
- rm -f test.out
- exit $r
-else
- ./driver --options-file "$db_options"
-fi