2 Test that variables of floating point types are displayed correctly.
9 from lldbsuite
.test
.decorators
import *
10 from lldbsuite
.test
.lldbtest
import *
11 from lldbsuite
.test
import lldbutil
14 class FloatTypesTestCase(AbstractBase
.GenericTester
):
15 def test_float_type(self
):
16 """Test that float-type variables are displayed correctly."""
17 self
.build_and_run("float.cpp", set(["float"]))
20 def test_float_type_from_block(self
):
21 """Test that float-type variables are displayed correctly from a block."""
22 self
.build_and_run("float.cpp", set(["float"]), bc
=True)