From c4c9119a35825785257b4578f07e88a04db9439e Mon Sep 17 00:00:00 2001 From: krakjoe Date: Thu, 5 Dec 2013 22:53:03 +0000 Subject: [PATCH] remove code directory --- tests/code/class.php | 8 -------- tests/commands/0102_print.test | 20 +++++++++++--------- 2 files changed, 11 insertions(+), 17 deletions(-) delete mode 100644 tests/code/class.php 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 -- 2.50.1