summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/030.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mysqli/tests/030.phpt')
-rw-r--r--ext/mysqli/tests/030.phpt24
1 files changed, 0 insertions, 24 deletions
diff --git a/ext/mysqli/tests/030.phpt b/ext/mysqli/tests/030.phpt
deleted file mode 100644
index da87218627..0000000000
--- a/ext/mysqli/tests/030.phpt
+++ /dev/null
@@ -1,24 +0,0 @@
---TEST--
-function test: mysqli_errno
---FILE--
-<?php
- $user = "root";
- $passwd = "";
-
- /*** test mysqli_connect 127.0.0.1 ***/
- $link = mysqli_connect("localhost", $user, $passwd);
- $errno = mysqli_errno($link);
- var_dump($errno);
-
- mysqli_select_db($link, "test");
-
- mysqli_query($link, "select * from non_exisiting_table");
- $errno = mysqli_errno($link);
-
- var_dump($errno);
-
- mysqli_close($link);
-?>
---EXPECT--
-int(0)
-int(1146)