summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug32394.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/bug32394.phpt')
-rwxr-xr-xext/spl/tests/bug32394.phpt17
1 files changed, 0 insertions, 17 deletions
diff --git a/ext/spl/tests/bug32394.phpt b/ext/spl/tests/bug32394.phpt
deleted file mode 100755
index 8189b23f7a..0000000000
--- a/ext/spl/tests/bug32394.phpt
+++ /dev/null
@@ -1,17 +0,0 @@
---TEST--
-Bug #32394 (offsetUnset() segfaults in a foreach)
---FILE--
-<?php
-
-$object = new ArrayIterator;
-$object->append(1);
-
-foreach($object as $key => $value)
-{
- $object->offsetUnset($key);
-}
-
-?>
-===DONE===
---EXPECT--
-===DONE===