Changeset 2165

Show
Ignore:
Timestamp:
07/02/08 20:42:31 (3 months ago)
Author:
sukyoungryu
Message:

[tests] Moved SyntaxRepetition? tests out of the nightly build for now. Added commented out code using where clauses and extending Any to the not_passing_yet directory.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ProjectFortress/src/com/sun/fortress/syntax_abstractions/SyntaxAbstractionJUTestAll.java

    r2119 r2165  
    3030 
    3131public class SyntaxAbstractionJUTestAll extends TestCase { 
    32      
     32 
    3333    private final static String STATIC_TESTS_DIR = ProjectProperties.BASEDIR + "static_tests/syntax_abstraction/"; 
    3434    private final static List<String> FAILING_SYNTAXABSTRACTIONS = Arrays.asList( 
     
    3939        "ChurchBooleans.fsi", 
    4040        "XXXSyntaxGrammarImportsUse.fss", 
     41        "SyntaxRepetition.fss", 
     42        "SyntaxRepetitionUse.fss", 
    4143        "ImportApiEmptyApiWhichImportsNonEmptyApiUse.fss", 
    4244        "UsingJavaIdentifiersAsPatternVariablesUse.fss"); 
    43          
     45 
    4446//        "SyntaxTest.fss", 
    4547//        "SyntaxGrammarImportsUse.fss", 
    46 //        "SyntaxRepetition.fss", 
    4748//        "SyntaxOptionUse.fss", 
    4849//        "SyntaxHelloWorldUse.fss", 
    4950//        "SyntaxTestUse.fss", 
    50 //        "SyntaxRepetitionUse.fss", 
    5151//        "SyntaxGrammarImports.fss", 
    5252//        "SyntaxGrammarImportsA.fss", 
     
    7777//        "SXXTemplateGapWithInconsistentParametersUse.fss", 
    7878//        "ImportEmptyApiWhichImportsNonEmptyApiNonEmpty.fss"); 
    79      
     79 
    8080    public static TestSuite suite() { 
    8181        TestCaseDir xml = new TestCaseDir(STATIC_TESTS_DIR+"/xml/", Collections.<String>emptyList(), null); 
     
    8383        TestCaseDir sql = new TestCaseDir(STATIC_TESTS_DIR+"/sql/", Collections.<String>emptyList(), null); 
    8484        TestCaseDir basisTests = new TestCaseDir(STATIC_TESTS_DIR, FAILING_SYNTAXABSTRACTIONS, null); 
    85          
     85 
    8686        StaticTestSuite suite = new StaticTestSuite("SyntaxAbstractionJUTestAll", basisTests); 
    8787        suite.addStaticTests(xml); 
     
    9090        return suite; 
    9191    } 
    92      
     92 
    9393}