diff options
| author | Marc Khouzam | 2013-07-08 17:13:14 +0000 |
|---|---|---|
| committer | Marc Khouzam | 2013-07-08 17:13:50 +0000 |
| commit | 20a079bafafa6ed9050b43cd683be3f631a59476 (patch) | |
| tree | e85cdf60c7bb11373a265eaeeb916fe861735184 | |
| parent | be653cc350ebb855868d40365bfe70811867898f (diff) | |
| download | org.eclipse.cdt-20a079bafafa6ed9050b43cd683be3f631a59476.tar.gz org.eclipse.cdt-20a079bafafa6ed9050b43cd683be3f631a59476.tar.xz org.eclipse.cdt-20a079bafafa6ed9050b43cd683be3f631a59476.zip | |
Bug 409186 - Remove test that was causing assertion.
Change-Id: Ia4336dc239c2193259eee3350d67c2a4f0255c06
| -rw-r--r-- | dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/tests/dsf/gdb/tests/ProcStatParserTest.java | 16 |
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 { |
