From 5517f64dae732a558ca4614b237c336646df79d8 Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Mon, 18 Oct 2010 22:54:25 +0000 Subject: [PATCH] Uncomment the @skip decorator to reproduce the hang while running the test suite. llvm-svn: 116763 --- lldb/test/types/TestFloatTypesExpr.py | 1 + lldb/test/types/TestIntegerTypesExpr.py | 1 + 2 files changed, 2 insertions(+) diff --git a/lldb/test/types/TestFloatTypesExpr.py b/lldb/test/types/TestFloatTypesExpr.py index 6c2ffe92a5b8..e0ff2de181ac 100644 --- a/lldb/test/types/TestFloatTypesExpr.py +++ b/lldb/test/types/TestFloatTypesExpr.py @@ -6,6 +6,7 @@ import AbstractBase import unittest2 import lldb +#@unittest2.skip("rdar://problem/8562563 ./dotest.py -v . 2> ~/Developer/Log/lldbtest.log now hangs (very consistently) when executing test/types") class FloatTypesTestCase(AbstractBase.GenericTester): mydir = "types" diff --git a/lldb/test/types/TestIntegerTypesExpr.py b/lldb/test/types/TestIntegerTypesExpr.py index 57036724bd33..ac723cf2031e 100644 --- a/lldb/test/types/TestIntegerTypesExpr.py +++ b/lldb/test/types/TestIntegerTypesExpr.py @@ -6,6 +6,7 @@ import AbstractBase import unittest2 import lldb +#@unittest2.skip("rdar://problem/8562563 ./dotest.py -v . 2> ~/Developer/Log/lldbtest.log now hangs (very consistently) when executing test/types") class IntegerTypesTestCase(AbstractBase.GenericTester): mydir = "types"