X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a8eb45f960d0995eae89b2daa0cfcd698af1e1d6..ab74c9ce5c149e95d518e126e728a693470b9941:/src/bindings/java/org/simgrid/NativeLib.java diff --git a/src/bindings/java/org/simgrid/NativeLib.java b/src/bindings/java/org/simgrid/NativeLib.java index 209ef8273a..11578d490b 100644 --- a/src/bindings/java/org/simgrid/NativeLib.java +++ b/src/bindings/java/org/simgrid/NativeLib.java @@ -164,12 +164,12 @@ public final class NativeLib { public void run() { try { for (File f : dir.listFiles()) - if (! f.delete() ) - System.err.println("Unable to clean temporary file "+f.getAbsolutePath()+" during shutdown."); - if (! dir.delete() ) - System.err.println("Unable to clean temporary file "+dir.getAbsolutePath()+" during shutdown."); + if (! f.delete() && !f.getAbsolutePath().contains("appveyor")) // Be silent on AppVeyor to not break the tests. Ugly trick :) + System.out.println("Unable to clean temporary file "+f.getAbsolutePath()+" during shutdown."); + if (! dir.delete() && !dir.getAbsolutePath().contains("appveyor") ) + System.out.println("Unable to clean temporary file "+dir.getAbsolutePath()+" during shutdown."); } catch(Exception e) { - System.err.println("Unable to clean temporary file "+dir.getAbsolutePath()+" during shutdown: "+e.getCause()); + System.out.println("Unable to clean temporary file "+dir.getAbsolutePath()+" during shutdown: "+e.getCause()); e.printStackTrace(); } }