edits
[cdsspec-compiler.git] / generate.sh
index d894a33f7c311c797aa9984e06a909f74c6bc024..38ec8b2a41e5e2f7e89678aa5877560158a5dbc8 100755 (executable)
@@ -1,16 +1,19 @@
 #!/bin/bash
 
-BENCH=(blocking-queue-example ms-queue linuxrwlocks mcs-lock \
-    chase-lev-deque-bugfix chase-lev-deque spsc-bugfix mpmp-queue ticket-lock \
+BENCH=(ms-queue linuxrwlocks mcs-lock \
+    chase-lev-deque-bugfix spsc-bugfix mpmc-queue ticket-lock \
     concurrent-hashmap seqlock read-copy-update)
 
 ClassPath=$(dirname ${BASH_SOURCE[0]})/classes
 
 Class=edu/uci/eecs/codeGenerator/CodeGenerator
 
-# Use your own directory. We recommend the original benchmarks and generated
-# instrumented benchmarks to be within the model checker's directory.
-BenchDir=
-GenerateDir=
+# Use your own directory.
+# We recommend the original benchmarks and generated instrumented benchmarks to
+# be within the model checker's directory.
+BenchDir=../benchmarks
+GenerateDir=../test-cdsspec
+
+mkdir -p $GenerateDir
 
 java -cp $ClassPath $Class $BenchDir $GenerateDir ${BENCH[*]}