diff options
author | Adrian Prantl <aprantl@apple.com> | 2018-11-05 22:19:22 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2018-11-05 22:19:22 +0000 |
commit | 005d3dee4db240761ea5132bb7cb304f0cb19bdb (patch) | |
tree | c83236e834064812d90eb5721de8498cd6a677fb /lldb/packages/Python/lldbsuite/test | |
parent | 6868d2dd65d48e6e15dbfe99dc8b5fcbd042fd8f (diff) | |
download | bcm5719-llvm-005d3dee4db240761ea5132bb7cb304f0cb19bdb.tar.gz bcm5719-llvm-005d3dee4db240761ea5132bb7cb304f0cb19bdb.zip |
Skip this test on older versions of clang.
llvm-svn: 346172
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/c/vla/TestVLA.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/c/vla/TestVLA.py b/lldb/packages/Python/lldbsuite/test/lang/c/vla/TestVLA.py index 0d3a0a69a50..e6711b98968 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/vla/TestVLA.py +++ b/lldb/packages/Python/lldbsuite/test/lang/c/vla/TestVLA.py @@ -7,6 +7,7 @@ class TestVLA(TestBase): mydir = TestBase.compute_mydir(__file__) + @skipIf(compiler="clang", compiler_version=['<', '8.0']) def test_vla(self): self.build() _, process, _, _ = lldbutil.run_to_source_breakpoint( |