summaryrefslogtreecommitdiff
path: root/tests/func/005.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/func/005.phpt')
-rw-r--r--tests/func/005.phpt19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/func/005.phpt b/tests/func/005.phpt
deleted file mode 100644
index c4215feb49..0000000000
--- a/tests/func/005.phpt
+++ /dev/null
@@ -1,19 +0,0 @@
---TEST--
-Testing register_shutdown_function()
---FILE--
-<?php
-
-function foo()
-{
- print "foo";
-}
-
-register_shutdown_function("foo");
-
-print "foo() will be called on shutdown...\n";
-
-?>
---EXPECT--
-foo() will be called on shutdown...
-foo
-