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.phpt21
1 files changed, 0 insertions, 21 deletions
diff --git a/ext/mysqli/tests/050.phpt b/ext/mysqli/tests/050.phpt
deleted file mode 100644
index 5f923ccf34..0000000000
--- a/ext/mysqli/tests/050.phpt
+++ /dev/null
@@ -1,21 +0,0 @@
---TEST--
-non freed statement test
---SKIPIF--
-<?php require_once('skipif.inc'); ?>
---FILE--
-<?php
- include "connect.inc";
-
- /************************
- * non freed stamement
- ************************/
- $link = mysqli_connect($host, $user, $passwd);
-
- $stmt = mysqli_prepare($link, "SELECT CURRENT_USER()");
- mysqli_execute($stmt);
-
- mysqli_close($link);
- printf("Ok\n");
-?>
---EXPECT--
-Ok