diff options
Diffstat (limited to '_test/cases/inc/parser/parser_links.test.php')
-rw-r--r-- | _test/cases/inc/parser/parser_links.test.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/_test/cases/inc/parser/parser_links.test.php b/_test/cases/inc/parser/parser_links.test.php index 1bcdcd461..ff0389a8c 100644 --- a/_test/cases/inc/parser/parser_links.test.php +++ b/_test/cases/inc/parser/parser_links.test.php @@ -80,8 +80,9 @@ class TestOfDoku_Parser_Links extends TestOfDoku_Parser { ); $this->assertEqual(array_map('stripByteIndex',$this->H->calls),$calls); } - function testEmail() { + $this->fail('The emaillink mode seems to cause php 5.0.5 to segfault'); + return; $this->P->addMode('email',new Doku_Parser_Mode_Emaillink()); $this->P->parse("Foo <bugs@php.net> Bar"); $calls = array ( @@ -95,7 +96,7 @@ class TestOfDoku_Parser_Links extends TestOfDoku_Parser { ); $this->assertEqual(array_map('stripByteIndex',$this->H->calls),$calls); } - + function testInternalLinkOneChar() { $this->P->addMode('internallink',new Doku_Parser_Mode_InternalLink()); $this->P->parse("Foo [[l]] Bar"); |