Skip to content

Commit

Permalink
Probably fixes INRIA#706 by enabling parallel tests
Browse files Browse the repository at this point in the history
  • Loading branch information
monperrus committed Sep 21, 2016
1 parent 306db30 commit f7651e6
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,11 @@ protected void generateProcessedSourceFilesUsingCUs() {

// this function is used to hack the JDT compiler...
protected File createTmpJavaFile(File folder) {
File f = new File(folder, "Tmp.java");
try {
f = File.createTempFile("Tmp", ".java", folder);
} catch (IOException e1) {
throw new SpoonException(e1);
}
if (f.exists()) {
return f;
}
Expand Down

0 comments on commit f7651e6

Please sign in to comment.