File tree Expand file tree Collapse file tree 6 files changed +36
-12
lines changed Expand file tree Collapse file tree 6 files changed +36
-12
lines changed Original file line number Diff line number Diff line change 1
1
--TEST--
2
2
Test simple recursive watchpoint
3
+ --SKIPIF--
4
+ <?php
5
+ if (PHP_INT_SIZE == 4 ) {
6
+ die ("xfail There may be flaws in the implementation of watchpoints that cause failures " )
7
+ }
8
+ ?>
3
9
--INI--
4
10
opcache.optimization_level=0
5
11
--PHPDBG--
@@ -45,5 +51,3 @@ $b = [$a];
45
51
46
52
unset($ b );
47
53
$ b = 2 ;
48
- --XFAIL --
49
- There may be flaws in the implementation of watchpoints that cause failures
Original file line number Diff line number Diff line change 1
1
--TEST--
2
2
Test simple array watchpoint with replace
3
+ --SKIPIF--
4
+ <?php
5
+ if (PHP_INT_SIZE == 4 ) {
6
+ die ("xfail There may be flaws in the implementation of watchpoints that cause failures " )
7
+ }
8
+ ?>
3
9
--PHPDBG--
4
10
b 6
5
11
r
@@ -30,5 +36,3 @@ $a[0] = 1;
30
36
$ a [0 ] = 2 ;
31
37
32
38
$ a = [0 => 3 , 1 => 4 ];
33
- --XFAIL --
34
- There may be flaws in the implementation of watchpoints that cause failures
Original file line number Diff line number Diff line change 1
1
--TEST--
2
2
Test simple watchpoint with replace
3
+ --SKIPIF--
4
+ <?php
5
+ if (PHP_INT_SIZE == 4 ) {
6
+ die ("xfail There may be flaws in the implementation of watchpoints that cause failures " )
7
+ }
8
+ ?>
3
9
--PHPDBG--
4
10
b 6
5
11
r
@@ -37,5 +43,3 @@ $a[0] = 1;
37
43
$ a [0 ] = 2 ;
38
44
39
45
$ a = [0 => 3 , 1 => 4 ];
40
- --XFAIL --
41
- There may be flaws in the implementation of watchpoints that cause failures
Original file line number Diff line number Diff line change 1
1
--TEST--
2
2
Test detection of inline string manipulations on zval watch
3
+ --SKIPIF--
4
+ <?php
5
+ if (PHP_INT_SIZE == 4 ) {
6
+ die ("xfail There may be flaws in the implementation of watchpoints that cause failures " )
7
+ }
8
+ ?>
3
9
--INI--
4
10
opcache.optimization_level=0
5
11
--PHPDBG--
@@ -36,5 +42,3 @@ prompt>
36
42
$ b = "a " ;
37
43
$ a = $ b .$ b ;
38
44
$ a [1 ] = "b " ;
39
- --XFAIL --
40
- There may be flaws in the implementation of watchpoints that cause failures
Original file line number Diff line number Diff line change 1
1
--TEST--
2
2
Test proper watch comparisons when having multiple levels of indirection from a zval to its value
3
+ --SKIPIF--
4
+ <?php
5
+ if (PHP_INT_SIZE == 4 ) {
6
+ die ("xfail There may be flaws in the implementation of watchpoints that cause failures " )
7
+ }
8
+ ?>
3
9
--PHPDBG--
4
10
b 3
5
11
r
@@ -46,5 +52,3 @@ $c = &$a;
46
52
$ a [1 ] = "b " ;
47
53
48
54
exit ;
49
- --XFAIL --
50
- There may be flaws in the implementation of watchpoints that cause failures
Original file line number Diff line number Diff line change 1
1
--TEST--
2
2
Test multiple watch elements pointing to the same watchpoint
3
+ --SKIPIF--
4
+ <?php
5
+ if (PHP_INT_SIZE == 4 ) {
6
+ die ("xfail There may be flaws in the implementation of watchpoints that cause failures " )
7
+ }
8
+ ?>
3
9
--PHPDBG--
4
10
b 4
5
11
r
@@ -69,5 +75,3 @@ $a[0] = 2;
69
75
$ a [1 ] = 3 ;
70
76
$ c = [1 ];
71
77
$ b = &$ c ;
72
- --XFAIL --
73
- There may be flaws in the implementation of watchpoints that cause failures
You can’t perform that action at this time.
0 commit comments