blob: 5ccb83957bdd12c4506ec92d39c9c5f61aeda55b (
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
|
#! /bin/sh
# file : evolution/tester.in
# copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
# 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.
#
if test -f test1.sql; then
# Standalone schema.
#
# Drop everything.
$top_builddir/db-driver test1.sql || exit 1
$top_builddir/db-driver test2.sql || exit 1
# Base schema (-post is always empty).
$top_builddir/db-driver test2-002-pre.sql || exit 1
./driver --options-file "$top_builddir/db.options" 1 || exit 1
# Migration.
$top_builddir/db-driver test2-003-pre.sql || exit 1
./driver --options-file "$top_builddir/db.options" 2 || exit 1
$top_builddir/db-driver test2-003-post.sql || exit 1
# Current schema.
./driver --options-file "$top_builddir/db.options" 3 || exit 1
else
# Embedded schema. Just run the driver.
#
./driver --options-file "$top_builddir/db.options" 1 || exit 1
./driver --options-file "$top_builddir/db.options" 2 || exit 1
./driver --options-file "$top_builddir/db.options" 3 || exit 1
fi
|