1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 10:16:03 +02:00

bug 311468: JUnit failure: ErrorParserFileMatchingTest - SymbolicLink

one more check
This commit is contained in:
Andrew Gvozdev 2010-05-13 02:53:16 +00:00
parent c41cae33cb
commit dc1f19458f

View file

@ -538,6 +538,7 @@ public class ResourceHelper {
String command = "ln -s " + realPath.toOSString() + ' ' + linkedPath.toOSString();
Process process = Runtime.getRuntime().exec(command);
Assert.assertFalse("Thread is in interrupted state", Thread.interrupted());
try {
process.waitFor();
} catch (InterruptedException e) {