diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2023-12-13 21:57:53 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2024-01-23 21:20:44 +0300 |
commit | fc3fb39c90ab7fe5fccbe3f3bc0eb2645157bb96 (patch) | |
tree | 6c8c1bfb5fe89f7378b92ac066b4ca8ecfd25228 /evolution/tester.in | |
parent | 02367faedb16b6186e8852de47e5b749dc48c2df (diff) |
Switch to build2
Diffstat (limited to 'evolution/tester.in')
-rwxr-xr-x | evolution/tester.in | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/evolution/tester.in b/evolution/tester.in deleted file mode 100755 index 1fef1c2..0000000 --- a/evolution/tester.in +++ /dev/null @@ -1,42 +0,0 @@ -#! /bin/sh - -# file : evolution/tester.in -# license : GNU GPL v2; see accompanying LICENSE file - -# -# Run an evolution 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" - -if test -f test1.sql; then - # Standalone schema. - # - - # Drop everything. - $db_driver test3.sql || exit 1 - $db_driver test2.sql || exit 1 - $db_driver test1.sql || exit 1 - - # Base schema. - $db_driver test3-002-pre.sql || exit 1 - $db_driver test3-002-post.sql || exit 1 - ./driver --options-file "$db_options" 1 || exit 1 - - # Migration. - $db_driver test3-003-pre.sql || exit 1 - ./driver --options-file "$db_options" 2 || exit 1 - $db_driver test3-003-post.sql || exit 1 - - # Current schema. - ./driver --options-file "$db_options" 3 || exit 1 - -else - # Embedded schema. Just run the driver. - # - ./driver --options-file "$db_options" 1 || exit 1 - ./driver --options-file "$db_options" 2 || exit 1 - ./driver --options-file "$db_options" 3 || exit 1 -fi |