Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Khouzam2013-07-08 17:13:14 +0000
committerMarc Khouzam2013-07-08 17:13:50 +0000
commit20a079bafafa6ed9050b43cd683be3f631a59476 (patch)
treee85cdf60c7bb11373a265eaeeb916fe861735184
parentbe653cc350ebb855868d40365bfe70811867898f (diff)
downloadorg.eclipse.cdt-20a079bafafa6ed9050b43cd683be3f631a59476.tar.gz
org.eclipse.cdt-20a079bafafa6ed9050b43cd683be3f631a59476.tar.xz
org.eclipse.cdt-20a079bafafa6ed9050b43cd683be3f631a59476.zip
Bug 409186 - Remove test that was causing assertion.
-rw-r--r--dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/ProcStatParserTest.java16
1 files changed, 1 insertions, 15 deletions
diff --git a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/ProcStatParserTest.java b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/ProcStatParserTest.java
index 23f2ede4126..acb6f85b1d4 100644
--- a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/ProcStatParserTest.java
+++ b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/ProcStatParserTest.java
@@ -155,21 +155,7 @@ public class ProcStatParserTest {
assertEquals(57,l2);
int l3 = (int)load.getLoad("3").floatValue();
assertEquals(57,l3);
- }
-
- /**
- * Reverse the order of the /proc/stat files to cause parsing problem
- * @throws Exception
- */
- @Test
- public void testProcStatParseWrongOrder() throws Exception {
- ProcStatParser procStatParser = new ProcStatParser();
- procStatParser.parseStatFile(stat_t2_file);
- procStatParser.parseStatFile(stat_t0_file);
- ProcStatCoreLoads load = procStatParser.getCpuLoad();
- assertEquals(load, null);
- }
-
+ }
@Test
public void testProcStatParseOneSetOfCounters() throws Exception {

Back to the top