Show
Ignore:
Timestamp:
07/23/08 11:12:55 (16 months ago)
Author:
dr2chase
Message:

[tests] Minor test cleanup, part 1 (modifications now, renaming next)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/ProjectFortress/testNPY

    r723 r2344  
    1818################################################################################ 
    1919 
    20 if (uname | egrep -q CYGWIN) ; then  
    21   CP="build;third_party/junit/junit.jar;third_party/xtc/xtc.jar;third_party/jsr166y/jsr166y.jar;third_party/plt/plt.jar" 
     20FORTRESS_HOME="`pwd`" 
     21 
     22if (uname | egrep CYGWIN > /dev/null) ; then 
     23  SEP=";" 
    2224else 
    23   CP="build:third_party/junit/junit.jar:third_party/xtc/xtc.jar:third_party/jsr166y/jsr166y.jar:third_party/plt/plt.jar" 
     25  SEP=":" 
    2426fi 
     27 
     28CP="$FORTRESS_HOME/ProjectFortress/build${SEP}$FORTRESS_HOME/ProjectFortress/third_party/junit/junit.jar${SEP}$FORTRESS_HOME/ProjectFortress/third_party/asm/asm-3.1.jar${SEP}$FORTRESS_HOME/ProjectFortress/third_party/xtc/xtc.jar${SEP}$FORTRESS_HOME/ProjectFortress/third_party/jsr166y/jsr166y.jar${SEP}$FORTRESS_HOME/ProjectFortress/third_party/plt/plt.jar${SEP}$JAVA_HOME/lib/tools.jar${SEP}$FORTRESS_HOME/ProjectFortress/third_party/unsigned/unsigned.jar${SEP}$CP" 
    2529 
    2630java -cp "$CP" -Xmx320m -Xms192m \ 
    2731junit.swingui.TestRunner \ 
    28 com.sun.fortress.interpreter.drivers.NotPassingYet >& test.log 
     32com.sun.fortress.unit_tests.NotPassingYet >& test.log