mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 02:06:01 +02:00
[248587] Added new catchpoint JUnit tests to test suites.
This commit is contained in:
parent
b7f97865b7
commit
8a2cae3b45
13 changed files with 114 additions and 8 deletions
|
@ -30,6 +30,7 @@ import org.junit.runners.Suite;
|
||||||
MIExpressionsTest.class,
|
MIExpressionsTest.class,
|
||||||
MIMemoryTest.class,
|
MIMemoryTest.class,
|
||||||
MIBreakpointsTest.class,
|
MIBreakpointsTest.class,
|
||||||
|
MICatchpointsTest.class,
|
||||||
MIDisassemblyTest.class,
|
MIDisassemblyTest.class,
|
||||||
GDBProcessesTest.class
|
GDBProcessesTest.class
|
||||||
/* Add your suite class here */
|
/* Add your suite class here */
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2010 Ericsson and others.
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Ericsson - Initial Implementation
|
||||||
|
*******************************************************************************/
|
||||||
|
package org.eclipse.cdt.tests.dsf.gdb.tests.tests_6_6;
|
||||||
|
|
||||||
|
import org.eclipse.cdt.tests.dsf.gdb.framework.BackgroundRunner;
|
||||||
|
import org.eclipse.cdt.tests.dsf.gdb.tests.MICatchpointsTest;
|
||||||
|
import org.junit.BeforeClass;
|
||||||
|
import org.junit.runner.RunWith;
|
||||||
|
|
||||||
|
@RunWith(BackgroundRunner.class)
|
||||||
|
public class MICatchpointsTest_6_6 extends MICatchpointsTest {
|
||||||
|
@BeforeClass
|
||||||
|
public static void beforeClassMethod_6_6() {
|
||||||
|
setGdbProgramNamesLaunchAttributes("6.6");
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2009 Ericsson and others.
|
* Copyright (c) 2009, 2010 Ericsson and others.
|
||||||
* All rights reserved. This program and the accompanying materials
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
|
@ -30,6 +30,7 @@ import org.junit.runners.Suite;
|
||||||
MIExpressionsTest_6_6.class,
|
MIExpressionsTest_6_6.class,
|
||||||
MIMemoryTest_6_6.class,
|
MIMemoryTest_6_6.class,
|
||||||
MIBreakpointsTest_6_6.class,
|
MIBreakpointsTest_6_6.class,
|
||||||
|
MICatchpointsTest_6_6.class,
|
||||||
MIDisassemblyTest_6_6.class,
|
MIDisassemblyTest_6_6.class,
|
||||||
GDBProcessesTest_6_6.class
|
GDBProcessesTest_6_6.class
|
||||||
/* Add your test class here */
|
/* Add your test class here */
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2009 Ericsson and others.
|
* Copyright (c) 2009, 2010 Ericsson and others.
|
||||||
* All rights reserved. This program and the accompanying materials
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
|
@ -34,6 +34,7 @@ import org.junit.runners.Suite;
|
||||||
MIExpressionsTest_6_6.class,
|
MIExpressionsTest_6_6.class,
|
||||||
MIMemoryTest_6_6.class,
|
MIMemoryTest_6_6.class,
|
||||||
MIBreakpointsTest_6_6.class,
|
MIBreakpointsTest_6_6.class,
|
||||||
|
MICatchpointsTest_6_6.class,
|
||||||
MIDisassemblyTest_6_6.class,
|
MIDisassemblyTest_6_6.class,
|
||||||
GDBProcessesTest_6_6.class
|
GDBProcessesTest_6_6.class
|
||||||
/* Add your test class here */
|
/* Add your test class here */
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2010 Ericsson and others.
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Ericsson - Initial Implementation
|
||||||
|
*******************************************************************************/
|
||||||
|
package org.eclipse.cdt.tests.dsf.gdb.tests.tests_6_7;
|
||||||
|
|
||||||
|
import org.eclipse.cdt.tests.dsf.gdb.framework.BackgroundRunner;
|
||||||
|
import org.eclipse.cdt.tests.dsf.gdb.tests.MICatchpointsTest;
|
||||||
|
import org.junit.BeforeClass;
|
||||||
|
import org.junit.runner.RunWith;
|
||||||
|
|
||||||
|
@RunWith(BackgroundRunner.class)
|
||||||
|
public class MICatchpointsTest_6_7 extends MICatchpointsTest {
|
||||||
|
@BeforeClass
|
||||||
|
public static void beforeClassMethod_6_7() {
|
||||||
|
setGdbProgramNamesLaunchAttributes("6.7");
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2009 Ericsson and others.
|
* Copyright (c) 2009, 2010 Ericsson and others.
|
||||||
* All rights reserved. This program and the accompanying materials
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
|
@ -30,6 +30,7 @@ import org.junit.runners.Suite;
|
||||||
MIExpressionsTest_6_7.class,
|
MIExpressionsTest_6_7.class,
|
||||||
MIMemoryTest_6_7.class,
|
MIMemoryTest_6_7.class,
|
||||||
MIBreakpointsTest_6_7.class,
|
MIBreakpointsTest_6_7.class,
|
||||||
|
MICatchpointsTest_6_7.class,
|
||||||
MIDisassemblyTest_6_7.class,
|
MIDisassemblyTest_6_7.class,
|
||||||
GDBProcessesTest_6_7.class
|
GDBProcessesTest_6_7.class
|
||||||
/* Add your test class here */
|
/* Add your test class here */
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2009 Ericsson and others.
|
* Copyright (c) 2009, 2010 Ericsson and others.
|
||||||
* All rights reserved. This program and the accompanying materials
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
|
@ -34,6 +34,7 @@ import org.junit.runners.Suite;
|
||||||
MIExpressionsTest_6_7.class,
|
MIExpressionsTest_6_7.class,
|
||||||
MIMemoryTest_6_7.class,
|
MIMemoryTest_6_7.class,
|
||||||
MIBreakpointsTest_6_7.class,
|
MIBreakpointsTest_6_7.class,
|
||||||
|
MICatchpointsTest_6_7.class,
|
||||||
MIDisassemblyTest_6_7.class,
|
MIDisassemblyTest_6_7.class,
|
||||||
GDBProcessesTest_6_7.class
|
GDBProcessesTest_6_7.class
|
||||||
/* Add your test class here */
|
/* Add your test class here */
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2010 Ericsson and others.
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Ericsson - Initial Implementation
|
||||||
|
*******************************************************************************/
|
||||||
|
package org.eclipse.cdt.tests.dsf.gdb.tests.tests_6_8;
|
||||||
|
|
||||||
|
import org.eclipse.cdt.tests.dsf.gdb.framework.BackgroundRunner;
|
||||||
|
import org.eclipse.cdt.tests.dsf.gdb.tests.MICatchpointsTest;
|
||||||
|
import org.junit.BeforeClass;
|
||||||
|
import org.junit.runner.RunWith;
|
||||||
|
|
||||||
|
@RunWith(BackgroundRunner.class)
|
||||||
|
public class MICatchpointsTest_6_8 extends MICatchpointsTest {
|
||||||
|
|
||||||
|
@BeforeClass
|
||||||
|
public static void beforeClassMethod_6_8() {
|
||||||
|
setGdbProgramNamesLaunchAttributes("6.8");
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2009 Ericsson and others.
|
* Copyright (c) 2009, 2010 Ericsson and others.
|
||||||
* All rights reserved. This program and the accompanying materials
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
|
@ -30,6 +30,7 @@ import org.junit.runners.Suite;
|
||||||
MIExpressionsTest_6_8.class,
|
MIExpressionsTest_6_8.class,
|
||||||
MIMemoryTest_6_8.class,
|
MIMemoryTest_6_8.class,
|
||||||
MIBreakpointsTest_6_8.class,
|
MIBreakpointsTest_6_8.class,
|
||||||
|
MICatchpointsTest_6_8.class,
|
||||||
MIDisassemblyTest_6_8.class,
|
MIDisassemblyTest_6_8.class,
|
||||||
GDBProcessesTest_6_8.class
|
GDBProcessesTest_6_8.class
|
||||||
/* Add your test class here */
|
/* Add your test class here */
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2009 Ericsson and others.
|
* Copyright (c) 2009, 2010 Ericsson and others.
|
||||||
* All rights reserved. This program and the accompanying materials
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
|
@ -34,6 +34,7 @@ import org.junit.runners.Suite;
|
||||||
MIExpressionsTest_6_8.class,
|
MIExpressionsTest_6_8.class,
|
||||||
MIMemoryTest_6_8.class,
|
MIMemoryTest_6_8.class,
|
||||||
MIBreakpointsTest_6_8.class,
|
MIBreakpointsTest_6_8.class,
|
||||||
|
MICatchpointsTest_6_8.class,
|
||||||
MIDisassemblyTest_6_8.class,
|
MIDisassemblyTest_6_8.class,
|
||||||
GDBProcessesTest_6_8.class
|
GDBProcessesTest_6_8.class
|
||||||
/* Add your test class here */
|
/* Add your test class here */
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
* Copyright (c) 2010 Ericsson and others.
|
||||||
|
* All rights reserved. This program and the accompanying materials
|
||||||
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
* which accompanies this distribution, and is available at
|
||||||
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
|
* Contributors:
|
||||||
|
* Ericsson - Initial Implementation
|
||||||
|
*******************************************************************************/
|
||||||
|
package org.eclipse.cdt.tests.dsf.gdb.tests.tests_7_0;
|
||||||
|
|
||||||
|
import org.eclipse.cdt.tests.dsf.gdb.framework.BackgroundRunner;
|
||||||
|
import org.eclipse.cdt.tests.dsf.gdb.tests.MICatchpointsTest;
|
||||||
|
import org.junit.BeforeClass;
|
||||||
|
import org.junit.runner.RunWith;
|
||||||
|
|
||||||
|
@RunWith(BackgroundRunner.class)
|
||||||
|
public class MICatchpointsTest_7_0 extends MICatchpointsTest {
|
||||||
|
@BeforeClass
|
||||||
|
public static void beforeClassMethod_7_0() {
|
||||||
|
setGdbProgramNamesLaunchAttributes("7.0");
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2009 Ericsson and others.
|
* Copyright (c) 2009, 2010 Ericsson and others.
|
||||||
* All rights reserved. This program and the accompanying materials
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
|
@ -30,6 +30,7 @@ import org.junit.runners.Suite;
|
||||||
MIExpressionsTest_7_0.class,
|
MIExpressionsTest_7_0.class,
|
||||||
MIMemoryTest_7_0.class,
|
MIMemoryTest_7_0.class,
|
||||||
MIBreakpointsTest_7_0.class,
|
MIBreakpointsTest_7_0.class,
|
||||||
|
MICatchpointsTest_7_0.class,
|
||||||
MIDisassemblyTest_7_0.class,
|
MIDisassemblyTest_7_0.class,
|
||||||
GDBProcessesTest_7_0.class
|
GDBProcessesTest_7_0.class
|
||||||
/* Add your test class here */
|
/* Add your test class here */
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2009 Ericsson and others.
|
* Copyright (c) 2009, 2010 Ericsson and others.
|
||||||
* All rights reserved. This program and the accompanying materials
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* which accompanies this distribution, and is available at
|
* which accompanies this distribution, and is available at
|
||||||
|
@ -35,6 +35,7 @@ import org.junit.runners.Suite;
|
||||||
MIExpressionsTest_7_0.class,
|
MIExpressionsTest_7_0.class,
|
||||||
MIMemoryTest_7_0.class,
|
MIMemoryTest_7_0.class,
|
||||||
MIBreakpointsTest_7_0.class,
|
MIBreakpointsTest_7_0.class,
|
||||||
|
MICatchpointsTest_7_0.class,
|
||||||
MIDisassemblyTest_7_0.class,
|
MIDisassemblyTest_7_0.class,
|
||||||
GDBProcessesTest_7_0.class
|
GDBProcessesTest_7_0.class
|
||||||
/* Add your test class here */
|
/* Add your test class here */
|
||||||
|
|
Loading…
Add table
Reference in a new issue