1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Comment out ScannerTestCase::testGerman until we figure out how to make it platform independent.

This commit is contained in:
John Camelon 2004-03-28 23:21:52 +00:00
parent 6537609bed
commit 99f00cebcd
2 changed files with 13 additions and 8 deletions

View file

@ -1,3 +1,6 @@
2004-03-28 John Camelon
Removed ScannerTestCase::testGerman() until we can figure out how to make it portable.
2004-03-26 Andrew Niefer
template template parameters
- added parser/org/eclipse/cdt/core/parser/tests/CompleteParseASTTest.testTemplateTemplateParameter()

View file

@ -1555,15 +1555,17 @@ public class ScannerTestCase extends BaseScannerTest
scanner.nextToken();
assertEquals( callback.problems.size(), 1 );
}
// public void testGerman() throws ScannerException
// {
// initializeScanner("\"Lißä\" 'ß' /* Lißä */ Lißä ");
// validateString("Lißä");
// validateChar( 'ß' );
// validateIdentifier( "Lißä");
// validateEOF();
// }
public void testGerman() throws ScannerException
{
initializeScanner("\"Lißä\" 'ß' /* Lißä */ Lißä ");
validateString("Lißä");
validateChar( 'ß' );
validateIdentifier( "Lißä");
validateEOF();
}
public void test54778() throws ScannerException
{
initializeScanner("#if 1 || 0 < 3 \n printf \n #endif\n");