diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2013-06-03 15:02:51 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2013-06-03 15:02:51 +0200 |
commit | aaf4c660e0882566a2855a634c39ffe6f8816ece (patch) | |
tree | f3f38d5e7cfd005d4712dd2af7eb143a52542137 /tester.in | |
parent | 2fe70fbeb57cd457b913c376c1b987522c0c5d58 (diff) |
Use database name in options and driver files (autotools part)
Diffstat (limited to 'tester.in')
-rwxr-xr-x | tester.in | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tester.in b/tester.in new file mode 100755 index 0000000..1aae169 --- /dev/null +++ b/tester.in @@ -0,0 +1,28 @@ +#! /bin/sh + +# file : tester.in +# copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC +# license : GNU GPL v2; see accompanying LICENSE file + +# +# Run an ODB example. The example 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 *.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" +./driver --options-file "db_options" |