blob: 5169f8f77b58d0785b4b9d28873cdc654ab6126f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#! /bin/sh
# file : tester.in
# 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"
|