Skip to content

Commit

Permalink
Disable Bug468PerformanceTest #715
Browse files Browse the repository at this point in the history
The test often exceeds 60 seconds timeout on MacOS machines. Proposals
for replacing the performance test with a functionality test have been
made. To avoid spending more than a minute on a single test until the
test has been replaced, this change disables the test until then.

Contributes to
#715
  • Loading branch information
HeikoKlare committed Nov 29, 2023
1 parent 0a5f0ff commit e4502ef
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
import org.eclipse.core.runtime.QualifiedName;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;

//Test case for GitHub Issue 468
Expand Down Expand Up @@ -141,6 +142,7 @@ protected void tearDown() throws Exception {
// For 3 tries, the time was around 18000 ms to 25000 ms in windows 10 machine,
// so, set a limit of 1 minute.
@Test
@Ignore("See https://github.com/eclipse-platform/eclipse.platform/issues/715")
public void test() throws CoreException {
IFolder tempFolder = this.project.getFolder(TEMP_FOLDER_NAME);
long[] timeTakenForDeletingFiles = new long[1];
Expand Down

0 comments on commit e4502ef

Please sign in to comment.