blob: af8003c560a95a0dcd80e6ed78726d6b6ccb4def (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#! /bin/sh
# file : tester.in
# copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
# 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
|