summaryrefslogtreecommitdiff
path: root/sapi/fpm/tests/skipif.inc
blob: 8c569daafdc7e9fb2440fbb1646b9fdbd38f8026 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

if (substr(PHP_OS, 0, 3) == 'WIN') {
	die ("skip not for Windows");
}

include dirname(__FILE__)."/include.inc";

if (!get_fpm_path()) {
	die("skip FPM not found");
}

?>