diff options
author | Davide Italiano <davide@freebsd.org> | 2018-11-06 00:18:17 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2018-11-06 00:18:17 +0000 |
commit | 62d2f76a4542c3f0760426386d5b8e68d97af9c6 (patch) | |
tree | c950e56041ff7e83714d53ccdb29d7228fdde209 /lldb/packages/Python/lldbsuite/test | |
parent | d05345304c7dc2507d9521791d1e0dc98287d719 (diff) | |
download | bcm5719-llvm-62d2f76a4542c3f0760426386d5b8e68d97af9c6.tar.gz bcm5719-llvm-62d2f76a4542c3f0760426386d5b8e68d97af9c6.zip |
[TestVLA] Fix a python decorator.
llvm-svn: 346186
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/c/vla/TestVLA.py | 3 |
1 files changed, 2 insertions, 1 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 e6711b98968..f6341ec24fa 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/c/vla/TestVLA.py +++ b/lldb/packages/Python/lldbsuite/test/lang/c/vla/TestVLA.py @@ -1,5 +1,6 @@ import lldb from lldbsuite.test.lldbtest import * +from lldbsuite.test import decorators import lldbsuite.test.lldbutil as lldbutil @@ -7,7 +8,7 @@ class TestVLA(TestBase): mydir = TestBase.compute_mydir(__file__) - @skipIf(compiler="clang", compiler_version=['<', '8.0']) + @decorators.skipIf(compiler="clang", compiler_version=['<', '8.0']) def test_vla(self): self.build() _, process, _, _ = lldbutil.run_to_source_breakpoint( |