File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -18,5 +18,8 @@ echo Using:
18
18
echo " RDMD=$RDMD "
19
19
echo " DMD=$DMD "
20
20
21
+ # GDC doesn't autocreate the dir (and git doesn't beleive in empty dirs)
22
+ mkdir -p bin
23
+
21
24
echo Compiling Phobos-socket tests...
22
25
$RDMD --compiler=$DMD --build-only -g -unittest -debug=MYSQL_INTEGRATION_TESTS -ofbin/mysqln-tests-phobos -Isource source/mysql/connection.d && echo Running Phobos-socket tests... && bin/mysqln-tests-phobos
Original file line number Diff line number Diff line change 1
1
@ echo off
2
+
3
+ rem GDC doesn't autocreate the dir (and git doesn't beleive in empty dirs)
4
+ mkdir bin > NUL 2 > NUL
5
+
2
6
echo Compiling Phobos-socket tests...
3
7
rdmd --build-only -g -unittest -debug=MYSQL_INTEGRATION_TESTS -ofbin/mysqln-tests-phobos -Isource source/mysql/connection.d && echo Running Phobos-socket tests... && bin/mysqln-tests-phobos
You can’t perform that action at this time.
0 commit comments