3675 |
16 Aug 07 |
jari |
1 |
@echo off |
3675 |
16 Aug 07 |
jari |
REM $Id: test.sh 2259 2006-05-16 13:41:11Z nicklas $ |
3675 |
16 Aug 07 |
jari |
3 |
REM |
3675 |
16 Aug 07 |
jari |
REM Copyright (C) 2006 Nicklas Nordborg |
3675 |
16 Aug 07 |
jari |
5 |
REM |
3675 |
16 Aug 07 |
jari |
REM This file is part of BASE - BioArray Software Environment. |
3675 |
16 Aug 07 |
jari |
REM Available at http://base.thep.lu.se/ |
3675 |
16 Aug 07 |
jari |
8 |
REM |
3675 |
16 Aug 07 |
jari |
REM BASE is free software; you can redistribute it and/or modify it |
3675 |
16 Aug 07 |
jari |
REM under the terms of the GNU General Public License as published by |
4480 |
05 Sep 08 |
jari |
REM the Free Software Foundation; either version 3 of the License, or |
3675 |
16 Aug 07 |
jari |
REM (at your option) any later version. |
3675 |
16 Aug 07 |
jari |
13 |
REM |
3675 |
16 Aug 07 |
jari |
REM BASE is distributed in the hope that it will be useful, but |
3675 |
16 Aug 07 |
jari |
REM WITHOUT ANY WARRANTY; without even the implied warranty of |
3675 |
16 Aug 07 |
jari |
REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
3675 |
16 Aug 07 |
jari |
REM General Public License for more details. |
3675 |
16 Aug 07 |
jari |
18 |
REM |
3675 |
16 Aug 07 |
jari |
REM You should have received a copy of the GNU General Public License |
4514 |
11 Sep 08 |
jari |
REM along with BASE. If not, see <http://www.gnu.org/licenses/>. |
3675 |
16 Aug 07 |
jari |
21 |
REM ---------------------------------------- |
3675 |
16 Aug 07 |
jari |
22 |
|
3675 |
16 Aug 07 |
jari |
REM Set classpath |
3675 |
16 Aug 07 |
jari |
24 |
call set_classpath.bat |
3675 |
16 Aug 07 |
jari |
25 |
|
3675 |
16 Aug 07 |
jari |
REM Execute test class |
3675 |
16 Aug 07 |
jari |
27 |
|
3675 |
16 Aug 07 |
jari |
REM Which package to test is the first parameter |
3675 |
16 Aug 07 |
jari |
29 |
SET package=%1 |
3675 |
16 Aug 07 |
jari |
30 |
|
3675 |
16 Aug 07 |
jari |
REM Execute test: -ea = enable asserts; -server = server mode |
5031 |
28 Jul 09 |
nicklas |
32 |
java -Xmx512M -Xms128M -ea -server -cp %CP% -Dcom.sun.media.jai.disableMediaLib=true net.sf.basedb.test.%package%.Run %2 %3 %4 %5 %6 %7 %8 %9 |