File tree 2 files changed +16
-2
lines changed
2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 5
5
cp $INSTALL_DIR /config/* $INSTALL_DIR /classes/.
6
6
cp $INSTALL_DIR /tests/resources/* $INSTALL_DIR /classes/.
7
7
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
+
9
15
Original file line number Diff line number Diff line change 3
3
copy %INSTALL_DIR% \config\* %INSTALL_DIR% \classes\.
4
4
copy %INSTALL_DIR% \tests\resources\* %INSTALL_DIR% \classes\.
5
5
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
You can’t perform that action at this time.
0 commit comments