mirror of
https://github.com/php/php-src.git
synced 2024-11-25 10:54:15 +08:00
70 lines
1.4 KiB
PHP
70 lines
1.4 KiB
PHP
--TEST--
|
|
SPL: SplPriorityQueue: exceptions
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("spl")) print "skip"; ?>
|
|
--FILE--
|
|
<?php
|
|
class myPQueue extends SplPriorityQueue {
|
|
public function compare($a, $b) {
|
|
throw new exception("foo");
|
|
}
|
|
}
|
|
|
|
$h = new myPQueue;
|
|
|
|
try {
|
|
$h->insert(1, 1);
|
|
echo "inserted 1\n";
|
|
$h->insert(2, 1);
|
|
echo "inserted 2\n";
|
|
$h->insert(3, 1);
|
|
echo "inserted 3\n";
|
|
} catch(Exception $e) {
|
|
echo "Exception: ".$e->getMessage()."\n";
|
|
}
|
|
|
|
try {
|
|
$h->insert(4, 1);
|
|
echo "inserted 4\n";
|
|
} catch(Exception $e) {
|
|
echo "Exception: ".$e->getMessage()."\n";
|
|
}
|
|
|
|
try {
|
|
var_dump($h->extract());
|
|
} catch(Exception $e) {
|
|
echo "Exception: ".$e->getMessage()."\n";
|
|
}
|
|
try {
|
|
var_dump($h->extract());
|
|
} catch(Exception $e) {
|
|
echo "Exception: ".$e->getMessage()."\n";
|
|
}
|
|
|
|
echo "Recovering..\n";
|
|
$h->recoverFromCorruption();
|
|
|
|
try {
|
|
var_dump($h->extract());
|
|
} catch(Exception $e) {
|
|
echo "Exception: ".$e->getMessage()."\n";
|
|
}
|
|
try {
|
|
var_dump($h->extract());
|
|
} catch(Exception $e) {
|
|
echo "Exception: ".$e->getMessage()."\n";
|
|
}
|
|
?>
|
|
===DONE===
|
|
<?php exit(0); ?>
|
|
--EXPECTF--
|
|
inserted 1
|
|
Exception: foo
|
|
Exception: Heap is corrupted, heap properties are no longer ensured.
|
|
Exception: Heap is corrupted, heap properties are no longer ensured.
|
|
Exception: Heap is corrupted, heap properties are no longer ensured.
|
|
Recovering..
|
|
int(1)
|
|
int(2)
|
|
===DONE===
|