cd <your-project-dir>/jpf-core
bin/jpf src/examples/Rand.jpf
from the command line
-- Peter
target - name of the class with main() method
jpf.core.classpath - variable with classpath that use system under test.
To run my app I just use:
bin/jpf target.jpf
(I keep this file in jpf-core directory).
Check out [1] for more info about JPF config.
[1] - http://babelfish.arc.nasa.gov/trac/jpf/wiki/user/config
The *.jpf files are simple (Java properties formatted) text files, and they only have to include one line
target = <your-main-class>
Please see http://babelfish.arc.nasa.gov/trac/jpf/wiki/user/config for details, or look at some of the examples in jpf-core/src/examples
-- Peter