Skip to content

Commit

Permalink
Disable Bug468PerformanceTest (JUnit 3) eclipse-platform#715
Browse files Browse the repository at this point in the history
Extends the test disablement to be handled by JUnit 3.

Contributes to
eclipse-platform#715
  • Loading branch information
HeikoKlare committed Nov 29, 2023
1 parent 55eba76 commit 2bcb23f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
import org.junit.runners.Suite;

@RunWith(Suite.class)
@Suite.SuiteClasses({ PropertyManagerTest.class, Bug468PerformanceTest.class })
@Suite.SuiteClasses({ PropertyManagerTest.class,
// Bug468PerformanceTest.class
})
public class AllPropertiesTests {
}
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ protected void tearDown() throws Exception {
// so, set a limit of 1 minute.
@Test
@Ignore("See https://github.com/eclipse-platform/eclipse.platform/issues/715")
public void test() throws CoreException {
public void _test() throws CoreException {
IFolder tempFolder = this.project.getFolder(TEMP_FOLDER_NAME);
long[] timeTakenForDeletingFiles = new long[1];

Expand Down

0 comments on commit 2bcb23f

Please sign in to comment.