-
Notifications
You must be signed in to change notification settings - Fork 336
ErrorTraceGenerator
This is a listener to output a lightweight error trace. It prints the instructions at POR boundaries or points where there are multiple choices. An example is shown below.
====================### Lightweight Error Trace ###=======================
Length of Error Trace: 35
--------------------------------------------------- Thread1
Event.wait_for_event(oldclassic.java:79)
wait();
--------------------------------------------------- Thread2
SecondTask.run(oldclassic.java:129)
if (count == event2.count) { // <race> ditto
--------------------------------------------------- Thread2
SecondTask.run(oldclassic.java:127)
event1.signal_event(); // updates event1.count
--------------------------------------------------- Thread2
SecondTask.run(oldclassic.java:133)
count = event2.count; // <race> ditto
--------------------------------------------------- Thread1
FirstTask.run(oldclassic.java:103)
event1.wait_for_event();
--------------------------------------------------- Thread1
Configuration: +listener=gov.nasa.jpf.listener.ErrorTraceGenerator
Note the Error trace generator does not have the same memory bottlenecks as report.console.property_violation=trace that stores every bytecode instruction executed along the path from the start of the program to the error state. The error trace generator dynamically recreates the counterexample by tracing back to the start from the error state. The head of the error trace (list shown in the example) represents the last instruction in the error trace while the tail represents the first instruction.
Please contact us by creating an issue. We are trying to fix the process below, which no longer works.
-
How to obtain and install JPF
- System requirements
- Downloading
- Creating a site properties file
- Building, testing, and running
- JPF plugins
-
Developer guide
- Top-level design
- Key mechanisms
- Extension mechanisms
- Common utilities
- Running JPF from within your application
- Writing JPF tests
- Coding conventions
- Hosting an Eclipse plugin update site