diff --git a/Zend/tests/weakrefs/notify.phpt b/Zend/tests/weakrefs/notify.phpt new file mode 100644 index 0000000000000..1390c7b435a59 --- /dev/null +++ b/Zend/tests/weakrefs/notify.phpt @@ -0,0 +1,31 @@ +--TEST-- +Object free handler must call zend_weakrefs_notify +--FILE-- +newInstanceWithoutConstructor(); + } catch (\Throwable $e) { + continue; + } + $testedClasses++; + $ref = WeakReference::create($instance); + $instance = null; + gc_collect_cycles(); + if ($ref->get() !== null) { + printf("free handler of %s did not call zend_weakrefs_notify?\n", $class); + } +} + +if ($testedClasses === 0) { + print "Did not test any class\n"; +} +?> +==DONE== +--EXPECT-- +==DONE==