Home
last modified time | relevance | path

Searched refs:test (Results 1 – 25 of 5012) sorted by last modified time

12345678910>>...201

/PHP-7.4/
H A DNEWS700 . Fixed bug #80077 (getmxrr test bug). (Rainer Jung)
1487 . Fixed bug #78342 (Bus error in configure test for iconv //IGNORE). (Rainer
1712 . Fixed bug #78684 (PCRE bug72463_2 test is sending emails on Linux). (cmb)
1879 . Fixed bug #78342 (Bus error in configure test for iconv //IGNORE). (Rainer
H A Dconfigure.ac145 if test $? -ne 0 ; then
267 if test "${enable_libgcc+set}" != "set" && test "$GCC" = "yes"; then
297 if test "${with_pic+set}" != "set" || test "$with_pic" = "no"; then
794 …if test "$gcc_ccache" = "yes" && (test -z "$CCACHE_DISABLE" || test "$CCACHE_DISABLE" != "1"); then
827 if test "$GCC" = "yes" || test "$ICC" = "yes"; then
970 if test "$PHP_IPV6" != "no" && test "$ac_cv_ipv6_support" = yes; then
1101 if test -z "$PHP_MODULES" && test -z "$PHP_ZEND_EX"; then
1124 if test -z "$with_pear" && test "$enable_pear" = "no"; then
1457 if test "$PHP_PHAR" != "no" && test "$PHP_CLI" != "no"; then
1509 if test -n "$GCC" && test "$ZEND_INLINE_OPTIMIZATION" != "yes"; then
[all …]
/PHP-7.4/ext/phar/
H A Dphar.c1269 phar_archive_data **test, *unused = NULL; in phar_open_or_create_filename() local
1271 test = &unused; in phar_open_or_create_filename()
1296 *pphar = *test; in phar_open_or_create_filename()
1299 if ((*test)->is_data && !(*test)->is_tar && !(*test)->is_zip) { in phar_open_or_create_filename()
1306 if (PHAR_G(readonly) && !(*test)->is_data && ((*test)->is_tar || (*test)->is_zip)) { in phar_open_or_create_filename()
1315 (*test)->is_writeable = 1; in phar_open_or_create_filename()
1587 char *pos, test = '\0'; in phar_open_from_fp() local
1616 if (!test && recursion_count) { in phar_open_from_fp()
1617 test = '\1'; in phar_open_from_fp()
1677 test = '\0'; in phar_open_from_fp()
[all …]
H A Dphar_object.c1475 char *test = NULL; in phar_build() local
1486 test = spl_filesystem_object_get_path(intern, NULL); in phar_build()
1487 fname_len = spprintf(&fname, 0, "%s%c%s", test, DEFAULT_SLASH, intern->u.dir.entry.d_name); in phar_build()
1496 test = expand_filepath(fname, NULL); in phar_build()
1499 if (test) { in phar_build()
1500 fname = test; in phar_build()
3202 int test; in pharobj_cancompress() local
3204 test = 1; in pharobj_cancompress()
3205 zend_hash_apply_with_argument(manifest, phar_test_compression, &test); in pharobj_cancompress()
3206 return test; in pharobj_cancompress()
/PHP-7.4/ext/standard/tests/
H A Dbug81727.phpt4 ..Host-test=ignore; __Host-test=correct; . Secure-test=ignore; . Elephpant=Awesome;
11 ["__Host-test"]=>
/PHP-7.4/azure/macos/
H A Djob.yml65 --enable-zend-test \
79 - template: test.yml
82 - template: test.yml
/PHP-7.4/azure/i386/
H A Djob.yml62 --enable-zend-test \
84 mysql -uroot -proot -e "CREATE DATABASE IF NOT EXISTS test"
86 #sudo -u postgres psql -c "CREATE DATABASE test;"
88 - template: test.yml
91 - template: test.yml
/PHP-7.4/ext/openssl/
H A Dconfig0.m420 if test "$PHP_OPENSSL" != "no"; then
24 if test "$PHP_KERBEROS" != "no"; then
37 if test "$PHP_SYSTEM_CIPHERS" != "no"; then
/PHP-7.4/ext/standard/tests/network/
H A Dbug81618.phpt5 if (getenv('SKIP_ONLINE_TESTS')) die('skip online test');
/PHP-7.4/ext/dba/tests/
H A Ddba_tcadb.phpt2 DBA TCADB handler test
/PHP-7.4/ext/standard/tests/serialize/
H A Dbug69425.phpt7 class test
17 $data = unserialize('a:2:{i:0;O:4:"test":1:{s:4:"ryat";R:1;}i:1;i:2;}');
/PHP-7.4/ext/mysqli/tests/
H A Dbug64726.phpt8 die("skip mysqlnd only test");
H A Dbug79375.phpt17 $mysqli->query('DROP TABLE IF EXISTS test');
18 $mysqli->query('CREATE TABLE test (first int) ENGINE = InnoDB');
19 $mysqli->query('INSERT INTO test VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9)');
24 $query = "SELECT first FROM test WHERE first = 1 FOR UPDATE";
38 $query = "SELECT first FROM test WHERE first = 1 FOR UPDATE";
52 $query = "SELECT first FROM test WHERE first = 1 FOR UPDATE";
64 $query = "SELECT first FROM test WHERE first = 1 FOR UPDATE";
79 $query = "SELECT first FROM test WHERE first = 1 FOR UPDATE";
H A Dmysqli_report.phpt57 mysqli_stmt_prepare($stmt, "SELECT id FROM test WHERE id > ?");
87 mysqli_stmt_prepare($stmt, "SELECT id FROM test WHERE id > ?");
107 mysqli_stmt_prepare($stmt, "SELECT id FROM test WHERE id > ?");
118 mysqli_stmt_prepare($stmt, "SELECT id FROM test WHERE id > ?");
141 mysqli_stmt_prepare($stmt, "SELECT id FROM test WHERE id > ?");
151 mysqli_stmt_prepare($stmt, "SELECT id FROM test WHERE id > ?");
209 No test, because of to many prerequisites:
273 if (!mysqli_stmt_prepare($stmt, 'SELECT id, label FROM test'))
281 if (!mysqli_real_query($link, 'SELECT label, id FROM test'))
289 if (!mysqli_real_query($link, 'SELECT label, id FROM test'))
[all …]
/PHP-7.4/ext/pdo_pgsql/tests/
H A Dbug_33876.phpt17 $db->exec('CREATE TABLE test (foo varchar(5) NOT NULL, bar bool NOT NULL)');
18 $db->exec("INSERT INTO test VALUES('false','f')");
19 $db->exec("INSERT INTO test VALUES('true', 't')");
21 $res = $db->prepare('SELECT foo from test where bar = ?');
56 $res = $db->prepare('SELECT foo from test where bar = ?', array(
/PHP-7.4/sapi/fpm/tests/
H A Dtester.inc223 * Skip test if any of the supplied files does not exist.
240 * Skip test if config file is invalid.
256 * Skip test if IPv6 is not supported.
H A Dproc-idle-timeout.phpt6 if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
/PHP-7.4/ext/zip/tests/
H A Dbug77978.phpt16 $zip->addFromString("dir/test:/filename.txt", "contents");
21 @$zip->extractTo($target, "dir/test:/filename.txt");
25 var_dump(PHP_OS_FAMILY === "Windows" || file_exists("$target/dir/test:/filename.txt"));
33 @unlink(__DIR__ . "/bug77978/dir/test:/filename.txt");
34 @rmdir(__DIR__ . "/bug77978/dir/test:");
/PHP-7.4/ext/dom/tests/
H A Dbug81433.phpt11 $element = $dom->createElement('test', 'root');
/PHP-7.4/ext/gd/tests/
H A Dbug53580.phpt7 die("skip test requires GD > 2.3.2");
H A Dbug51498.phpt7 die("skip test requires GD 2.3.0 or higher");
/PHP-7.4/build/
H A Dpkg.m466 if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
69 if test -n "$PKG_CONFIG"; then
94 if test -n "$PKG_CONFIG" && \
106 [if test -n "$$1"; then
108 elif test -n "$PKG_CONFIG"; then
111 test "x$?" != "x0" && pkg_failed=yes ],
154 if test $pkg_failed = yes; then
157 if test $_pkg_short_errors_supported = yes; then
175 elif test $pkg_failed = untried; then
/PHP-7.4/azure/
H A Dcommunity_job.yml6 # The purpose of the job is to test open-source community projects against an aggressive
9 # and don't care about the actual test results, as there will commonly be failures for
12 # Because exit() in PHP results in an unclean shutdown, test runs are patching phpunit to
55 # Avoid test using exit(), which thus leaks.
58 # Hack to disable a test that hangs on azure
/PHP-7.4/tests/security/
H A Dopen_basedir_disk_free_space.phpt12 var_dump(disk_free_space($initdir."/test/ok"));
/PHP-7.4/ext/standard/tests/streams/
H A Dbug81346.phpt4 The test expectation is due to bug #81345.

Completed in 64 milliseconds

12345678910>>...201