summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/050.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mysqli/tests/050.phpt')
-rw-r--r--ext/mysqli/tests/050.phpt19
1 files changed, 0 insertions, 19 deletions
diff --git a/ext/mysqli/tests/050.phpt b/ext/mysqli/tests/050.phpt
deleted file mode 100644
index 9ab5d346f8..0000000000
--- a/ext/mysqli/tests/050.phpt
+++ /dev/null
@@ -1,19 +0,0 @@
---TEST--
-non freed statement test
---FILE--
-<?php
- include "connect.inc";
-
- /************************
- * non freed stamement
- ************************/
- $link = mysqli_connect("localhost", $user, $passwd);
-
- $stmt = mysqli_prepare($link, "SELECT CURRENT_USER()");
- mysqli_execute($stmt);
-
- mysqli_close($link);
- printf("Ok\n");
-?>
---EXPECT--
-Ok