summaryrefslogtreecommitdiff
path: root/tests/run-test/bug75042-2.phpt
blob: 25f6d08e6161dc631133611499727c860e229dd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
phpt EXTENSIONS directive with static module
--SKIPIF--
<?php
$php = getenv('TEST_PHP_EXECUTABLE');
if (false === stripos(`$php -n -m`, 'spl')) {
	die('skip spl is NOT built static');
}
--EXTENSIONS--
SPL
--FILE--
<?php
var_dump(extension_loaded('spl'));
--EXPECT--
bool(true)