eclipse.platform icon indicating copy to clipboard operation
eclipse.platform copied to clipboard

Results 244 eclipse.platform issues
Sort by recently updated
recently updated
newest added

Files.copy seems to copy file-attributes differently than Eclipse NativeHandler (for files) do on Mac. In order to stay consistent always use the Eclipse way. Fixes https://github.com/eclipse-platform/eclipse.platform/issues/1504 (hopefully). Can someone with...

The ResourceTestUtil provides a compareContents() method for comparing the contents of two streams. This method is used in assertTrue() statements to check for equality of contents of two stream. Modern...

# Proposal: Opening/Closing Mechanism for Zip Files ## Background The Eclipse IDE has no built in functionality to open Zip Files and read or manipulate their content. Because of this,...

Both mac64 and macM: https://download.eclipse.org/eclipse/downloads/drops4/I20240813-0100/testresults/html/org.eclipse.core.tests.resources_ep433I-unit-mac64-java17_macosx.cocoa.x86_64_17.html https://download.eclipse.org/eclipse/downloads/drops4/I20240813-0100/testresults/html/org.eclipse.core.tests.resources_ep433I-unit-macM1-java17_macosx.cocoa.aarch64_17.html ``` org.opentest4j.AssertionFailedError: expected: but was: at org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:151) at org.junit.jupiter.api.AssertionFailureBuilder.buildAndThrow(AssertionFailureBuilder.java:132) at org.junit.jupiter.api.AssertTrue.failNotTrue(AssertTrue.java:63) at org.junit.jupiter.api.AssertTrue.assertTrue(AssertTrue.java:36) at org.junit.jupiter.api.AssertTrue.assertTrue(AssertTrue.java:31) at org.junit.jupiter.api.Assertions.assertTrue(Assertions.java:183) at org.eclipse.core.tests.resources.session.TestBug323833.test1(TestBug323833.java:85) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.eclipse.core.tests.harness.session.SessionTestExtensionRemote.skipIfExecuteInHost(SessionTestExtensionRemote.java:61) at...

bug
regression
test

This change removes non-useful messages from assertions in org.eclipse.core.tests.resources.regression. In cases where multiple assertions without proper messages are placed in subsequent lines of code, assertions are improved to provide better...

If the console output contains many lines copying (ctrl+c) the output to clipboard becomes very slow. For example try to copy 100_000 lines already lags some seconds. Seems to be...

performance

See https://download.eclipse.org/eclipse/downloads/drops4/I20240730-1800/testresults/html/org.eclipse.debug.tests_ep433I-unit-cen64-gtk3-java17_linux.gtk.x86_64_17.html Most likely regression from https://github.com/eclipse-platform/eclipse.platform/pull/1477 ``` Exception occurred executing command line. org.eclipse.core.runtime.CoreException: Exception occurred executing command line. at org.eclipse.debug.core.DebugPlugin.exec(DebugPlugin.java:1015) at org.eclipse.debug.tests.launching.LaunchTests.startProcessAndAssertOutputContains(LaunchTests.java:155) at org.eclipse.debug.tests.launching.LaunchTests.testProcessLaunchWithLongWorkingDirectory(LaunchTests.java:150) at java.base/java.lang.reflect.Method.invoke(Method.java:568) Caused by: java.io.IOException:...

bug
Linux
regression

There is a logged NPE in the constructor of `ViewerUpdateMonitor` when `viewerInput` is `null`. This can happen sporadically when updating tree elements during `Viewer.setInput(null)`. This PR adds a check to...

There is a logged NPE due to `viewerInput` being `null` in the constructor of `ViewerUpdateMonitor` when updating tree elements during `Viewer.setInput(null)`: https://github.com/eclipse-platform/eclipse.platform/blob/b469dee78f959320d018d3607d74fc24da69f7cd/debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/ViewerUpdateMonitor.java#L86-L91 The problem originally occurred when watching a variable...

bug