Skip to content

Commit

Permalink
fix bug in grid5000
Browse files Browse the repository at this point in the history
  • Loading branch information
simonAllier committed Feb 26, 2014
1 parent 0ec84cd commit 56dc420
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions grid5000.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ git pull
mvn clean package

rm -rf repo/diversify-exp
mkdir repo
sh script/git/init.sh repo

sleep $((RANDOM%700))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ public boolean isToBeProcessed(CtInvocation<?> candidate) {

public void process(CtInvocation<?> invocation) {
String snippet = "fr.inria.diversify.sosie.logger.LogWriter.writeAssert(Thread.currentThread(),\"" +
getClass(invocation).getQualifiedName() + "\",\"" + getMethod(invocation).getSignature() + "\"";
getClass(invocation).getQualifiedName() + "\",\"" + getMethod(invocation).getSignature() + "\",\"" +
invocation.getTarget().getSignature()+ "\",";

for(CtExpression expression : invocation.getArguments()) {
snippet += ", " + expression.toString();
Expand Down

0 comments on commit 56dc420

Please sign in to comment.