summaryrefslogtreecommitdiff
path: root/test/windows/odb/all
blob: d9ecc1692fc0adfea5b93308aaf8d4f6f1b77ccd (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
#! /usr/bin/env bash

trap 'exit 1' ERR

function error ()
{
  echo "$*" 1>&2
}

function usage ()
{
  error "usage: $0 vc-version conf plat [action]"
  error "  valid configurations are: {Debug,Release}|all"
  error "  valid platforms are: {Win32,x64}|all"
  error "  valid actions are: /Build (default), /Clean, and /Rebuild"
}

if [ "$1" = "" ]; then
  error vc version expected
  usage
  exit 1
fi

if [ "$2" = "" ]; then
  error configuration expected
  usage
  exit 1
fi

if [ "$3" = "" ]; then
  error platform expected
  usage
  exit 1
fi

action=$4
if [ "$action" == "" ]; then
  action=/Build
fi

databases="mysql"

for d in $databases; do
  cmd.exe /C setenv.bat build.bat "$d" "$1" "$2" "$3" "$action"  
  cd odb-tests
  cmd.exe /C ..\\setenv.bat test.bat "$d"
  cd ..
  cd odb-examples
  cmd.exe /C ..\\setenv.bat test.bat "$d"
  cd ..
done