Changeset 4306

Show
Ignore:
Timestamp:
11/02/09 17:36:27 (3 weeks ago)
Author:
dr2chase
Message:

Fixed bugs that were breaking cruiseControl

Location:
trunk/ProjectFortress/src/com/sun/fortress
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/ProjectFortress/src/com/sun/fortress/compiler/environments/TopLevelEnvGenJUTest.java

    r4110 r4306  
    2020import com.sun.fortress.Shell; 
    2121import com.sun.fortress.compiler.WellKnownNames; 
     22import com.sun.fortress.compiler.phases.PhaseOrder; 
    2223import com.sun.fortress.exceptions.StaticError; 
    2324import com.sun.fortress.exceptions.shell.UserError; 
     
    5051    @Override 
    5152    protected void setUp() throws Exception { 
     53        Shell.setPhaseOrder(PhaseOrder.interpreterPhaseOrder); 
    5254        Shell.setScala(false); 
    5355        fssFiles = new String[4]; 
  • trunk/ProjectFortress/src/com/sun/fortress/tests/unit_tests/SpecDataJUTest.java

    r3998 r4306  
    1717package com.sun.fortress.tests.unit_tests; 
    1818 
     19import com.sun.fortress.Shell; 
     20import com.sun.fortress.compiler.phases.PhaseOrder; 
    1921import com.sun.fortress.repository.ProjectProperties; 
    2022import junit.framework.Test; 
     
    2931 
    3032    public static Test suite() throws IOException { 
     33        Shell.setPhaseOrder(PhaseOrder.interpreterPhaseOrder); 
     34 
    3135        String testDir1 = ProjectProperties.FORTRESS_AUTOHOME + "/SpecData/examples/basic"; 
    3236        String testDir2 = ProjectProperties.FORTRESS_AUTOHOME + "/SpecData/examples/preliminaries";