The tests fail to compile there:
```
complex/main.c:4:16: error: expected ';' at end of declaration
float complex complex_float = -1.5f + -2.5f * I;
^
;
```
mydir = TestBase.compute_mydir(__file__)
@no_debug_info_test
+ @skipIfWindows
def test(self):
self.build()
lldbutil.run_to_source_breakpoint(self, "// break here", lldb.SBFileSpec("main.c"))
@no_debug_info_test
# FIXME: LLDB fails to read the imaginary part of the number.
@expectedFailureAll()
+ @skipIfWindows
def test_long_double(self):
self.build()
lldbutil.run_to_source_breakpoint(self, "// break here", lldb.SBFileSpec("main.c"))
mydir = TestBase.compute_mydir(__file__)
@no_debug_info_test
+ @skipIfWindows
def test(self):
self.build()
lldbutil.run_to_source_breakpoint(self, "// break here", lldb.SBFileSpec("main.c"))
self.expect_expr("complex_unsigned_long", result_type="_Complex long", result_value="1 + 2i")
@no_debug_info_test
+ @skipIfWindows
def test_long_long(self):
self.build()
lldbutil.run_to_source_breakpoint(self, "// break here", lldb.SBFileSpec("main.c"))