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:
parent
cb35c8daa2
commit
f3bee99f00
1 changed files with 1 additions and 7 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue