16 lines
377 B
PHP
16 lines
377 B
PHP
<?php
|
|
// Do not run on Windows
|
|
if (substr(PHP_OS, 0, 3) == 'WIN') {
|
|
die("skip not for Windows");
|
|
}
|
|
// Running as root is not allowed without TEST_FPM_RUN_AS_ROOT env
|
|
if (!getmyuid() && !getenv('TEST_FPM_RUN_AS_ROOT')) {
|
|
die('skip Refusing to run as root');
|
|
}
|
|
|
|
require_once "tester.inc";
|
|
|
|
if (!FPM\Tester::findExecutable()) {
|
|
die("skip php-fpm binary not found");
|
|
}
|