File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
src/Symfony/Component/VarDumper/Tests Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -145,6 +145,10 @@ class: "Symfony\Component\VarDumper\Tests\Caster\ReflectionCasterTest"
145
145
*/
146
146
public function testGenerator ()
147
147
{
148
+ if (extension_loaded ('xdebug ' )) {
149
+ $ this ->markTestSkipped ('xdebug is active ' );
150
+ }
151
+
148
152
$ g = new GeneratorDemo ();
149
153
$ g = $ g ->baz ();
150
154
$ r = new \ReflectionGenerator ($ g );
Original file line number Diff line number Diff line change @@ -137,6 +137,10 @@ public function testClone()
137
137
138
138
public function testJsonCast ()
139
139
{
140
+ if (ini_get ('xdebug.overload_var_dump ' ) == 2 ) {
141
+ $ this ->markTestSkipped ('xdebug is active ' );
142
+ }
143
+
140
144
$ data = (array ) json_decode ('{"1":{}} ' );
141
145
142
146
$ cloner = new VarCloner ();
You can’t perform that action at this time.
0 commit comments