diff --git a/ext/mysqli/tests/mysqli_stmt_execute_stored_proc_out.phpt b/ext/mysqli/tests/mysqli_stmt_execute_stored_proc_out.phpt new file mode 100644 index 00000000000..c6053bcae8f --- /dev/null +++ b/ext/mysqli/tests/mysqli_stmt_execute_stored_proc_out.phpt @@ -0,0 +1,75 @@ +--TEST-- +mysqli_stmt_execute() - OUT +--SKIPIF-- + +--FILE-- +query("SELECT 1")) + printf("[013] [%d] %s\n", $link->errno, $link->error); + + } else { + printf("[004] Cannot create SP, [%d] %s.\n", mysqli_errno($link), mysqli_error($link)); + } + + mysqli_close($link); + print "done!"; +?> +--CLEAN-- + +--EXPECTF-- +[008] More results: %s +[009] Next results: %s +done! \ No newline at end of file