mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-22 06:02:11 +02:00
Bug 545624 - Disable failing tests
Change-Id: I60d34ca269482b089d738f5b911378bc1bd57238
This commit is contained in:
parent
47ae8d9cbf
commit
8220215a2e
8 changed files with 30 additions and 0 deletions
|
@ -46,11 +46,13 @@ import org.junit.Before;
|
|||
import org.junit.BeforeClass;
|
||||
import org.junit.ClassRule;
|
||||
import org.junit.FixMethodOrder;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.junit.runners.MethodSorters;
|
||||
|
||||
@SuppressWarnings("nls")
|
||||
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
|
||||
@Ignore
|
||||
public class NewManualNinjaTest {
|
||||
|
||||
private static SWTWorkbenchBot bot;
|
||||
|
|
|
@ -43,11 +43,13 @@ import org.junit.Before;
|
|||
import org.junit.BeforeClass;
|
||||
import org.junit.ClassRule;
|
||||
import org.junit.FixMethodOrder;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.junit.runners.MethodSorters;
|
||||
|
||||
@SuppressWarnings("nls")
|
||||
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
|
||||
@Ignore
|
||||
public class NewMesonConfigureTest {
|
||||
|
||||
private static SWTWorkbenchBot bot;
|
||||
|
@ -126,6 +128,7 @@ public class NewMesonConfigureTest {
|
|||
}
|
||||
|
||||
@Test
|
||||
@Ignore
|
||||
public void attemptMesonConfiguration() throws Exception {
|
||||
String projectName = "MesonTestProj2";
|
||||
// open C++ perspective
|
||||
|
@ -185,6 +188,7 @@ public class NewMesonConfigureTest {
|
|||
}
|
||||
|
||||
@Test
|
||||
@Ignore
|
||||
public void buildMesonProject() throws Exception {
|
||||
String projectName = "MesonTestProj2";
|
||||
// Make sure the project indexer completes. At that point we're stable.
|
||||
|
@ -326,6 +330,7 @@ public class NewMesonConfigureTest {
|
|||
}
|
||||
|
||||
@Test
|
||||
@Ignore
|
||||
public void rebuildMesonProject() throws Exception {
|
||||
String projectName = "MesonTestProj2";
|
||||
// Make sure the project indexer completes. At that point we're stable.
|
||||
|
|
|
@ -43,11 +43,13 @@ import org.junit.Before;
|
|||
import org.junit.BeforeClass;
|
||||
import org.junit.ClassRule;
|
||||
import org.junit.FixMethodOrder;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.junit.runners.MethodSorters;
|
||||
|
||||
@SuppressWarnings("nls")
|
||||
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
|
||||
@Ignore
|
||||
public class NewMesonProjectTest {
|
||||
|
||||
private static SWTWorkbenchBot bot;
|
||||
|
|
|
@ -39,6 +39,7 @@ import org.eclipse.cdt.dsf.service.DsfSession;
|
|||
import org.eclipse.cdt.tests.dsf.gdb.framework.BaseParametrizedTestCase;
|
||||
import org.eclipse.cdt.tests.dsf.gdb.framework.SyncUtil;
|
||||
import org.eclipse.cdt.tests.dsf.gdb.launching.TestsPlugin;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.junit.runners.Parameterized;
|
||||
|
@ -215,6 +216,7 @@ public class CommandLineArgsTest extends BaseParametrizedTestCase {
|
|||
* bug 474648
|
||||
*/
|
||||
@Test
|
||||
@Ignore
|
||||
public void testSettingArgumentsWithSpecialSymbols() throws Throwable {
|
||||
// Test that arguments are parsed correctly:
|
||||
// The string provided by the user is split into arguments on spaces
|
||||
|
|
|
@ -209,6 +209,7 @@ public class MIExpressionsTest extends BaseParametrizedTestCase {
|
|||
* variables.
|
||||
*/
|
||||
@Test
|
||||
@Ignore
|
||||
public void testLocalVariables() throws Throwable {
|
||||
// Run to the point where all local variables are initialized
|
||||
SyncUtil.runToLocation("testLocals");
|
||||
|
@ -457,6 +458,7 @@ public class MIExpressionsTest extends BaseParametrizedTestCase {
|
|||
* children. See bug 320277.
|
||||
*/
|
||||
@Test
|
||||
@Ignore
|
||||
public void testNestedBaseChildrenBug() throws Throwable {
|
||||
|
||||
MIStoppedEvent stoppedEvent = SyncUtil.runToLocation("BaseTest::test");
|
||||
|
@ -632,6 +634,7 @@ public class MIExpressionsTest extends BaseParametrizedTestCase {
|
|||
* make sure the internal MI commands are sequenced properly.
|
||||
*/
|
||||
@Test
|
||||
@Ignore
|
||||
public void testConcurrentReads() throws Throwable {
|
||||
// Next we test that we can read the value more than once
|
||||
// of the same variable object at the exact same time
|
||||
|
@ -942,6 +945,7 @@ public class MIExpressionsTest extends BaseParametrizedTestCase {
|
|||
* sure the internal MI commands are sequenced properly.
|
||||
*/
|
||||
@Test
|
||||
@Ignore
|
||||
public void testConcurrentReadWrite() throws Throwable {
|
||||
// Next we test that we can deal with a write request and read request
|
||||
// at
|
||||
|
@ -1034,6 +1038,7 @@ public class MIExpressionsTest extends BaseParametrizedTestCase {
|
|||
* to make sure the internal MI commands are sequenced properly.
|
||||
*/
|
||||
@Test
|
||||
@Ignore
|
||||
public void testConcurrentReadWriteChildren() throws Throwable {
|
||||
// Finally, we go nuts and request two reads, while requesting
|
||||
// a get children and get children count.
|
||||
|
@ -1180,6 +1185,7 @@ public class MIExpressionsTest extends BaseParametrizedTestCase {
|
|||
* an MI command to the back-end
|
||||
*/
|
||||
@Test
|
||||
@Ignore
|
||||
public void testWriteCache() throws Throwable {
|
||||
// Test the cache by changing a value but triggering a read before the
|
||||
// write clears the cache
|
||||
|
@ -1336,6 +1342,7 @@ public class MIExpressionsTest extends BaseParametrizedTestCase {
|
|||
* expression
|
||||
*/
|
||||
@Test
|
||||
@Ignore
|
||||
public void testExprAddress() throws Throwable {
|
||||
|
||||
SyncUtil.runToLocation("testAddress");
|
||||
|
@ -1493,6 +1500,7 @@ public class MIExpressionsTest extends BaseParametrizedTestCase {
|
|||
* a thread selected, the top-most stack frame is used for evaluation
|
||||
*/
|
||||
@Test
|
||||
@Ignore
|
||||
public void testThreadContext() throws Throwable {
|
||||
|
||||
// Step to a stack level of 2 to be able to test differen stack frames
|
||||
|
@ -3486,6 +3494,7 @@ public class MIExpressionsTest extends BaseParametrizedTestCase {
|
|||
* This test verifies that we can cast to a type and then revert.
|
||||
*/
|
||||
@Test
|
||||
@Ignore
|
||||
public void testCastToType() throws Throwable {
|
||||
SyncUtil.runToLocation("testCasting");
|
||||
MIStoppedEvent stoppedEvent = SyncUtil.step(3, StepType.STEP_OVER);
|
||||
|
@ -3550,6 +3559,7 @@ public class MIExpressionsTest extends BaseParametrizedTestCase {
|
|||
* This test verifies that we can display as array and then revert.
|
||||
*/
|
||||
@Test
|
||||
@Ignore
|
||||
public void testDisplayAsArray() throws Throwable {
|
||||
SyncUtil.runToLocation("testCasting");
|
||||
MIStoppedEvent stoppedEvent = SyncUtil.step(3, StepType.STEP_OVER);
|
||||
|
@ -3601,6 +3611,7 @@ public class MIExpressionsTest extends BaseParametrizedTestCase {
|
|||
* and then revert.
|
||||
*/
|
||||
@Test
|
||||
@Ignore
|
||||
public void testDisplayAsArrayAndCastToType() throws Throwable {
|
||||
SyncUtil.runToLocation("testCasting");
|
||||
MIStoppedEvent stoppedEvent = SyncUtil.step(3, StepType.STEP_OVER);
|
||||
|
@ -4391,6 +4402,7 @@ public class MIExpressionsTest extends BaseParametrizedTestCase {
|
|||
* 7.5.
|
||||
*/
|
||||
@Test
|
||||
@Ignore
|
||||
public void testRTTI_7_5() throws Throwable {
|
||||
assumeGdbVersionAtLeast(ITestConstants.SUFFIX_GDB_7_5);
|
||||
SyncUtil.runToLocation("testRTTI");
|
||||
|
|
|
@ -363,6 +363,7 @@ public class PostMortemCoreTest extends BaseParametrizedTestCase {
|
|||
* variables.
|
||||
*/
|
||||
@Test
|
||||
@Ignore
|
||||
public void testLocalVariables() throws Throwable {
|
||||
doLaunch();
|
||||
|
||||
|
@ -399,6 +400,7 @@ public class PostMortemCoreTest extends BaseParametrizedTestCase {
|
|||
}
|
||||
|
||||
@Test
|
||||
@Ignore
|
||||
public void readMemoryArray() throws Throwable {
|
||||
doLaunch();
|
||||
|
||||
|
|
|
@ -18,10 +18,12 @@ import org.eclipse.cdt.tests.dsf.gdb.tests.ITestConstants;
|
|||
import org.eclipse.cdt.tests.dsf.gdb.tests.MIExpressionsTest;
|
||||
import org.junit.Assume;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.junit.runners.Parameterized;
|
||||
|
||||
@RunWith(Parameterized.class)
|
||||
@Ignore
|
||||
public class MIExpressionsNonStopTest extends MIExpressionsTest {
|
||||
|
||||
@BeforeClass
|
||||
|
|
|
@ -57,6 +57,7 @@ import org.eclipse.cdt.tests.dsf.gdb.tests.ITestConstants;
|
|||
import org.junit.Assert;
|
||||
import org.junit.Assume;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
public class ThreadStackFrameSyncTest extends BaseParametrizedTestCase {
|
||||
|
@ -192,6 +193,7 @@ public class ThreadStackFrameSyncTest extends BaseParametrizedTestCase {
|
|||
* triggers a GDB notification that a new frame has been selected.
|
||||
*/
|
||||
@Test
|
||||
@Ignore
|
||||
public void testChangingCurrentFrameCLINotification() throws Throwable {
|
||||
ServiceEventWaitor<MIStoppedEvent> eventWaitor = new ServiceEventWaitor<>(fMultiRunControl.getSession(),
|
||||
MIStoppedEvent.class);
|
||||
|
@ -269,6 +271,7 @@ public class ThreadStackFrameSyncTest extends BaseParametrizedTestCase {
|
|||
* the current GDB stack frame
|
||||
*/
|
||||
@Test
|
||||
@Ignore
|
||||
public void testGdbSyncServiceCanSwitchGDBStackFrame() throws Throwable {
|
||||
ServiceEventWaitor<MIStoppedEvent> eventWaitor = new ServiceEventWaitor<>(fMultiRunControl.getSession(),
|
||||
MIStoppedEvent.class);
|
||||
|
|
Loading…
Add table
Reference in a new issue