Skip to content

Commit

Permalink
some tweaks to make it run on Windows cygwin.
Browse files Browse the repository at this point in the history
On cygwin use "concolic" instead of "concolic.cygwin".
  • Loading branch information
ksen007 committed Jul 5, 2012
1 parent b0b9709 commit 8404cd7
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion concolic.cygwin
@@ -1,7 +1,7 @@
#!/bin/bash

export PATH=$PATH:yices-2.0.0/bin
CLASSPATH=out/production/tests
CLASSPATH="out/production/tests"
iter=$1
YOURPGM=$2

Expand Down
Binary file modified lib/iagent.jar
Binary file not shown.
1 change: 1 addition & 0 deletions src/janala/instrument/SnoopInstructionTransformer.java
Expand Up @@ -28,6 +28,7 @@ public byte[] transform(ClassLoader loader,String cname, Class<?> c, ProtectionD
&& !cname.startsWith("java/util")
&& !cname.startsWith("java/io")
&& !cname.startsWith("java/security")
&& !cname.startsWith("sun/")
&& !cname.startsWith("javax/security")
&& !cname.startsWith("sun/security")
&& !cname.startsWith("sun/reflect")
Expand Down
16 changes: 16 additions & 0 deletions src/tests/Hello.java
@@ -0,0 +1,16 @@
/*
* Author: Koushik Sen (ksen@cs.berkeley.edu)
*/

package tests;

/**
* Author: Koushik Sen (ksen@cs.berkeley.edu)
* Date: 7/5/12
* Time: 10:54 AM
*/
public class Hello {
public static void main(String[] args) {
System.out.println("Hello!");
}
}

0 comments on commit 8404cd7

Please sign in to comment.