@@ -23,7 +23,6 @@ if not exist "%DEPS_DIR%" (
23
23
)
24
24
25
25
if /i " %APPVEYOR% " equ " True" (
26
- rem setup MySQL related exts
27
26
set MYSQL_PWD = Password12!
28
27
set MYSQL_TEST_PASSWD = %MYSQL_PWD%
29
28
set MYSQL_TEST_USER = root
@@ -37,7 +36,6 @@ if /i "%APPVEYOR%" equ "True" (
37
36
" C:\Program Files\MySql\MySQL Server 5.7\bin\mysql.exe" --user=%MYSQL_TEST_USER% -e " CREATE DATABASE IF NOT EXISTS test"
38
37
if %errorlevel% neq 0 exit /b 3
39
38
40
- rem setup PostgreSQL related exts
41
39
set PGUSER = postgres
42
40
set PGPASSWORD = Password12!
43
41
rem set PGSQL_TEST_CONNSTR=host=127.0.0.1 dbname=test port=5432 user=postgres password=Password12!
@@ -46,7 +44,6 @@ if /i "%APPVEYOR%" equ "True" (
46
44
" C:\Program Files\PostgreSQL\10\bin\createdb.exe" test
47
45
if %errorlevel% neq 0 exit /b 3
48
46
49
- rem setup ODBC related exts
50
47
set ODBC_TEST_USER = sa
51
48
set ODBC_TEST_PASS = Password12!
52
49
set ODBC_TEST_DSN = Driver={ODBC Driver 13 for SQL Server};Server=^ (local^ )\SQL2017;Database=master;uid=%ODBC_TEST_USER% ;pwd=%ODBC_TEST_PASS%
@@ -72,9 +69,6 @@ rem set OPENSSL_CONF=%OPENSSLDIR%\openssl.cnf
72
69
set OPENSSL_CONF =
73
70
rem set SSLEAY_CONF=
74
71
75
- rem prepare for Opcache
76
- if " %OPCACHE% " neq " " set OPCACHE_OPTS = -d opcache.enable=1 -d opcache.enable_cli=1 -d opcache.protect_memory=1 -d opcache.jit_buffer_size=16M
77
-
78
72
rem prepare for enchant
79
73
mkdir C:\usr\local\lib\enchant-2
80
74
if %errorlevel% neq 0 exit /b 3
@@ -108,5 +102,6 @@ mkdir c:\tests_tmp
108
102
109
103
set TEST_PHP_JUNIT = c:\junit.out.xml
110
104
105
+ set OPCACHE_OPTS = -d opcache.enable=1 -d opcache.enable_cli=1 -d opcache.protect_memory=1 -d opcache.jit_buffer_size=16M
111
106
nmake test TESTS=" %OPCACHE_OPTS% -q --offline -g FAIL,XFAIL,BORK,WARN,LEAK,XLEAK,SKIP --color --show-diff --show-slow 1000 --set-timeout 120 --temp-source c:\tests_tmp --temp-target c:\tests_tmp -j2"
112
107
if %errorlevel% neq 0 exit /b %errorlevel%
0 commit comments