1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Fix FPM UDS test for very long name check by extending its length

It did not correctly produce error message if run in in a short src path
This commit is contained in:
Jakub Zelenka
2023-08-30 12:57:15 +01:00
parent 597aeb1246
commit ea87501aee

View File

@@ -10,7 +10,7 @@ require_once "tester.inc";
$socketFilePrefix = __DIR__ . '/socket-file';
$socketFile = sprintf(
"/socket-file-fpm-unix-socket-too-long-filename-but-starts-anyway%s.sock",
"/this-socket-very-very-very-long-file-fpm-unix-socket-is-too-long-filename-but-starts-anyway%s.sock",
__DIR__,
str_repeat('-0000', 11)
);