Skip to content

Commit 08e752a

Browse files
author
rappavu
committed
Updated run_tests script to run specific a test suite.
1 parent d86c0f4 commit 08e752a

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

bin/run_tests

+7-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,11 @@ set -x
55
cp $INSTALL_DIR/config/* $INSTALL_DIR/classes/.
66
cp $INSTALL_DIR/tests/resources/* $INSTALL_DIR/classes/.
77

8-
java org.junit.runner.JUnitCore com.ibm.db2.r2dbc.TestSuite
8+
if [ -z $1 ]
9+
then
10+
java org.junit.runner.JUnitCore com.ibm.db2.r2dbc.TestSuite
11+
else
12+
java org.junit.runner.JUnitCore $1
13+
fi
14+
915

bin/win/run_tests.bat

+9-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,12 @@
33
copy %INSTALL_DIR%\config\* %INSTALL_DIR%\classes\.
44
copy %INSTALL_DIR%\tests\resources\* %INSTALL_DIR%\classes\.
55

6-
java -cp "%cp%;resources" -Dfile.encoding=UTF8 org.junit.runner.JUnitCore com.ibm.db2.r2dbc.TestSuite
6+
if %1. == . goto runall
7+
8+
java -cp "%cp%;resources" -Dfile.encoding=UTF8 org.junit.runner.JUnitCore %1
9+
goto done
10+
11+
:runall
12+
java -cp "%cp%;resources" -Dfile.encoding=UTF8 org.junit.runner.JUnitCore com.ibm.db2.r2dbc.TestSuite
13+
14+
:done

0 commit comments

Comments
 (0)