From cdc4a8eee5304989264284e081ba6a6d44abce69 Mon Sep 17 00:00:00 2001 From: Mike Magruder Date: Mon, 3 Jun 2013 11:35:43 -0700 Subject: [PATCH] Remove generated generator function name from test Get the generated function names out of the test output. --- hphp/test/quick/debugger/flow2.php.expectf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hphp/test/quick/debugger/flow2.php.expectf b/hphp/test/quick/debugger/flow2.php.expectf index fd252c399..d3e2860d5 100644 --- a/hphp/test/quick/debugger/flow2.php.expectf +++ b/hphp/test/quick/debugger/flow2.php.expectf @@ -114,7 +114,7 @@ hphpd> break flow2.php:12 Breakpoint 2 set on line 12 of flow2.php hphpd> @test(2) Constructor -Breakpoint 1 reached at 31231001122_1() on line 10 of %s/flow2.php +Breakpoint 1 reached at %s() on line 10 of %s/flow2.php 9 function genFoo($a) { 10 $a = bar($a); 11 $z = yield $a+5; @@ -126,7 +126,7 @@ Break at foo() on line 40 of %s/flow2.php 41 var_dump($x); hphpd> continue -Breakpoint 2 reached at 31231001122_1() on line 12 of %s/flow2.php +Breakpoint 2 reached at %s() on line 12 of %s/flow2.php 11 $z = yield $a+5; 12 yield $z+1; 13 error_log('Finished in genFoo');