|
Revision 879, 1.3 kB
(checked in by dr2chase, 1 year ago)
|
Fixes to overloading and instantiation deadlocks
|
| Line | |
|---|
| 1 |
#!/bin/bash |
|---|
| 2 |
|
|---|
| 3 |
################################################################################ |
|---|
| 4 |
# Copyright 2007 Sun Microsystems, Inc., |
|---|
| 5 |
# 4150 Network Circle, Santa Clara, California 95054, U.S.A. |
|---|
| 6 |
# All rights reserved. |
|---|
| 7 |
# |
|---|
| 8 |
# U.S. Government Rights - Commercial software. |
|---|
| 9 |
# Government users are subject to the Sun Microsystems, Inc. standard |
|---|
| 10 |
# license agreement and applicable provisions of the FAR and its supplements. |
|---|
| 11 |
# |
|---|
| 12 |
# Use is subject to license terms. |
|---|
| 13 |
# |
|---|
| 14 |
# This distribution may include materials developed by third parties. |
|---|
| 15 |
# |
|---|
| 16 |
# Sun, Sun Microsystems, the Sun logo and Java are trademarks or registered |
|---|
| 17 |
# trademarks of Sun Microsystems, Inc. in the U.S. and other countries. |
|---|
| 18 |
################################################################################ |
|---|
| 19 |
|
|---|
| 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" |
|---|
| 22 |
else |
|---|
| 23 |
CP="build:third_party/junit/junit.jar:third_party/xtc/xtc.jar:third_party/jsr166y/jsr166y.jar:third_party/plt/plt.jar" |
|---|
| 24 |
fi |
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 |
FORTRESS_THREADS=4 java -Xdebug -Xrunjdwp:transport=dt_socket,address=8001,server=y,suspend=n -cp "$CP" -Xmx512m -Xms256m \ |
|---|
| 29 |
junit.swingui.TestRunner \ |
|---|
| 30 |
com.sun.fortress.interpreter.drivers.SystemJUTests >& test.log |
|---|