1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-21 21:52:10 +02:00

Bug 569839: Don't discard exceptions in tests

Change-Id: I710922fcc1b23d61d52fa1aa868b491bc26edf01
This commit is contained in:
Jonah Graham 2020-12-21 10:35:38 -05:00
parent cb35c8daa2
commit f3bee99f00

View file

@ -92,8 +92,6 @@ abstract public class BaseTestFramework extends BaseTestCase {
public void cleanupProject() throws Exception {
try {
project.delete(true, false, monitor);
} catch (Throwable e) {
/*boo*/
} finally {
project = null;
}
@ -116,11 +114,7 @@ abstract public class BaseTestFramework extends BaseTestCase {
continue;
if (member.getName().equals(".settings"))
continue;
try {
member.delete(false, monitor);
} catch (Throwable e) {
/*boo*/
}
member.delete(false, monitor);
}
}