forked from CloCkWeRX/sdo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
runalltests.sh
60 lines (54 loc) · 3.02 KB
/
runalltests.sh
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
53
54
55
56
57
58
59
60
#! /bin/bash
# +----------------------------------------------------------------------+
# | (c) Copyright IBM Corporation 2005, 2006. |
# | All Rights Reserved. |
# +----------------------------------------------------------------------+
# | |
# | Licensed under the Apache License, Version 2.0 (the "License"); you |
# | may not use this file except in compliance with the License. You may |
# | obtain a copy of the License at |
# | http://www.apache.org/licenses/LICENSE-2.0 |
# | |
# | Unless required by applicable law or agreed to in writing, software |
# | distributed under the License is distributed on an "AS IS" BASIS, |
# | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
# | implied. See the License for the specific language governing |
# | permissions and limitations under the License. |
# +----------------------------------------------------------------------+
# | Author: SL |
# +----------------------------------------------------------------------+
# $Id: runalltests.sh,v 1.3 2007-02-07 11:25:35 cem Exp $
echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo This script tests the php executable installed
echo in /usr/local/bin and relies on the
echo rest of php as usually configured in
echo /usr/local/lib. Ensure that the php
echo include path is set to include
echo - /usr/local/lib/php
echo - your pecl build directory
echo You can do this by setting include_path in
echo the php.ini file, for example,
echo include_path=".:/usr/local/lib/php:/home/slaws/phpbuild-5-1-4/pecl"
echo Also ensure that the sdo project under
echo pecl is called SDO rather than sdo.
export TEST_PHP_EXECUTABLE=/usr/local/bin/php
export PHPUNIT_EXECUTABLE=/usr/local/bin/phpunit
export TMP=/tmp
echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo PHPT Tests
$TEST_PHP_EXECUTABLE run-tests.php tests
echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo PHPUnit Tests
cd tests
$TEST_PHP_EXECUTABLE AllTests.php
cd ..
echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo You may like to run the Relational samples now which
echo test the SDO Relational DAS against a real database.
echo See DAS/Relational/Scenarios/README for details
echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo You may like to run the relational interop tests now
echo See the file tests/interop/README.txt under
echo the test5 heading.
echo +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++