-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
36 lines (22 loc) · 883 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
INSTALL
-------
download calfuzzer.tar.gz from http://srl.cs.berkeley.edu/~ksen/calfuzzer/
tar zxvf calfuzzer.tar.gz
cd calfuzzer
ant
TEST
----
ant -f run.xml deadlockfuzzer
You should run
ant -f run.xml hw2
to test your implementation of RaceFuzzer.
HOW CAN I WRITE MY OWN ANALYSIS?
--------------------------
Check out the tool paper activetool.pdfpresent in the current directory.
See
src/javato/activetesting/DeadlockFuzzerAnalysis.java
src/javato/activetesting/IGoodlockAnalysis.java
for an implementation of DeadlockFuzzer. Note that this is not the optimized implementation reported in the PLDI'09 paper. You need to implement the classes
src/javato/activetesting/RaceFuzzerAnalysis.java
src/javato/activetesting/HybridAnalysis.java
See the target deadlockfuzzer, hw2, test_race1, test_1 in run.xml for details on how to invoke DeadlockFuzzer and RaceFuzzer.