Ptolemy II
uses a Jacl to run the test suite.
Jacl is a 100% Java implementation of a subset of the Tcl language.
We provide
This version is based on Jacl 1.1.1, but has the following changes:
How to run the Ptolemy II test suite
- Download
ptjacl.zip
- Unzip it using either
Winzip or
info-zip
- Place
ptjacl.jar
at the top of
the Ptolemy II directory:
cp ptjacl.jar $PTII
- Rerun configure
cd $PTII
./configure
- Run the tests
make tests
Running Jacl by hand
To run Jacl in Bourne Shell
CLASSPATH=ptjacl.jar
export CLASSPATH
java tcl.lang.Shell
To run Jacl in the C shell
setenv CLASSPATH ptjacl.jar
java tcl.lang.Shell
To run Jacl as a standalone window in Bourne Shell, use
the tcl.lang.PanelShellApp class instead of tcl.lang.Shell:
CLASSPATH=ptjava.jar
export CLASSPATH
java tcl.lang.PanelShellApp
cxh at eecs