forked from krakjoe/pthreads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun-time-cache-corruption.phpt
58 lines (48 loc) · 1.14 KB
/
run-time-cache-corruption.phpt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
--TEST--
Test run time cache bug #494
--DESCRIPTION--
Runtime Caches were being incorrectly used (shared!), this caused strange behaviour for various things
--FILE--
<?php
interface TestInterface {}
class DebugClass implements TestInterface {}
class Some extends Threaded {
public static function staticNess() {
$closure = function() : DebugClass {
return (new \DebugClass());
};
$objCreated = $closure();
var_dump((new \ReflectionClass($objCreated))->getInterfaceNames());
var_dump($objCreated instanceof \TestInterface);
}
}
class Test extends Thread {
public function run(){
Some::staticNess();
}
}
Some::staticNess();
$test = new class extends Thread {
public function run() {
Some::staticNess();
}
};
$test->start(PTHREADS_INHERIT_NONE |
PTHREADS_INHERIT_INI |
PTHREADS_ALLOW_HEADERS |
PTHREADS_INHERIT_COMMENTS |
PTHREADS_INHERIT_INCLUDES |
PTHREADS_INHERIT_FUNCTIONS |
PTHREADS_INHERIT_CLASSES) && $test->join();
?>
--EXPECT--
array(1) {
[0]=>
string(13) "TestInterface"
}
bool(true)
array(1) {
[0]=>
string(13) "TestInterface"
}
bool(true)