File tree Expand file tree Collapse file tree 4 files changed +10
-2
lines changed Expand file tree Collapse file tree 4 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -89,6 +89,10 @@ if not exist "%PHP_BUILD_CACHE_ENCHANT_DICT_DIR%\en_US.aff" (
89
89
mkdir %LOCALAPPDATA% \enchant\hunspell
90
90
copy %PHP_BUILD_CACHE_ENCHANT_DICT_DIR% \* %LOCALAPPDATA% \enchant\hunspell
91
91
92
+ rem prepare for snmp
93
+ set MIBDIRS = %DEPS_DIR% \share\mibs
94
+ start %DEPS_DIR% \bin\snmpd.exe -C -c %APPVEYOR_BUILD_FOLDER% \ext\snmp\tests\snmpd.conf -Ln
95
+
92
96
set PHP_BUILD_DIR = %PHP_BUILD_OBJ_DIR% \Release
93
97
if " %THREAD_SAFE% " equ " 1" set PHP_BUILD_DIR = %PHP_BUILD_DIR% _TS
94
98
@@ -101,7 +105,7 @@ rem work-around for some spawned PHP processes requiring OpenSSL
101
105
echo extension=php_openssl.dll >> %PHP_BUILD_DIR% \php.ini
102
106
103
107
rem remove ext dlls for which tests are not supported
104
- for %%i in (imap ldap oci8_12c pdo_firebird pdo_oci snmp ) do (
108
+ for %%i in (imap ldap oci8_12c pdo_firebird pdo_oci) do (
105
109
del %PHP_BUILD_DIR% \php_%%i .dll
106
110
)
107
111
@@ -116,6 +120,8 @@ nmake test TESTS="%OPCACHE_OPTS% -q --offline --show-diff --show-slow 1000 --set
116
120
117
121
set EXIT_CODE = %errorlevel%
118
122
123
+ taskkill /f /im snmpd.exe
124
+
119
125
appveyor PushArtifact %TEST_PHP_JUNIT%
120
126
121
127
if %EXIT_CODE% GEQ 1 (
Original file line number Diff line number Diff line change 7
7
--SKIPIF--
8
8
<?php
9
9
require_once (__DIR__ .'/skipif.inc ' );
10
+ if (PHP_OS_FAMILY === "Windows " ) die ("xfail fails on Windows for unknown reasons " );
10
11
?>
11
12
--ENV--
12
13
MIBS=noneXistent
Original file line number Diff line number Diff line change 7
7
--SKIPIF--
8
8
<?php
9
9
require_once (__DIR__ .'/skipif.inc ' );
10
+ if (PHP_OS_FAMILY === "Windows " ) die ("xfail fails on Windows for unknown reasons " );
10
11
?>
11
12
--FILE--
12
13
<?php
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ rocommunity public 127.0.0.1
5
5
rocommunity6 public ::1
6
6
rwcommunity private 127.0.0.1
7
7
8
- Do not enable them - being set here they make appropriate OID switch into r/o
8
+ # Do not enable them - being set here they make appropriate OID switch into r/o
9
9
#syslocation "Somewhere in the world"
10
10
#syscontact "root"
11
11
You can’t perform that action at this time.
0 commit comments