From: krakjoe Date: Thu, 5 Dec 2013 22:53:03 +0000 (+0000) Subject: remove code directory X-Git-Tag: php-5.6.0alpha1~110^2~29^2~13 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c4c9119a35825785257b4578f07e88a04db9439e;p=php remove code directory --- diff --git a/tests/code/class.php b/tests/code/class.php deleted file mode 100644 index 84efca97d4..0000000000 --- a/tests/code/class.php +++ /dev/null @@ -1,8 +0,0 @@ - diff --git a/tests/commands/0102_print.test b/tests/commands/0102_print.test index be993de621..de4acb7651 100644 --- a/tests/commands/0102_print.test +++ b/tests/commands/0102_print.test @@ -4,23 +4,25 @@ # expect: TEST::FORMAT # options: -rr ################################################# -#[Set execution context: %s%eclass.php] -#[Attempting compilation of %s%eclass.php] -#[Success] #[User Class: test] #Methods (3): -#L%d-%d test::testMethod() %s%eclass.php +#L%d-%d test::testMethod() %s # L%d %s ZEND_RETURN C%d -# L%d-%d test::testPrivateMethod() %s%eclass.php +# L%d-%d test::testPrivateMethod() %s # L%d %s ZEND_RETURN C%d -# L%d-%d test::testProtectedMethod() %s%eclass.php +# L%d-%d test::testProtectedMethod() %s # L%d %s ZEND_RETURN C%d #[User Method testMethod] -# L%d-%d test::testMethod() %s%eclass.php +# L%d-%d test::testMethod() %s # L%d %s ZEND_RETURN C%d ################################################# -exec sapi/phpdbg/tests/code/class.php -compile +<: +class test { + public function testMethod(){} + private function testPrivateMethod(){} + protected function testProtectedMethod(){} +} +:> print class test print method test::testMethod q