From 20a079bafafa6ed9050b43cd683be3f631a59476 Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Mon, 8 Jul 2013 13:13:14 -0400 Subject: [PATCH] Bug 409186 - Remove test that was causing assertion. Change-Id: Ia4336dc239c2193259eee3350d67c2a4f0255c06 --- .../tests/dsf/gdb/tests/ProcStatParserTest.java | 16 +--------------- 1 file changed, 1 insertion(+), 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 {