From b9321bd77445fb09ca174203de282a1ff593ba5e Mon Sep 17 00:00:00 2001 From: Oleksiy Vyalov Date: Wed, 10 Dec 2014 01:48:17 +0000 Subject: [PATCH] Skip TestExprPathSynthetic test on FreeBSD, Linux & Windows. llvm-svn: 223905 --- .../python_api/exprpath_synthetic/TestExprPathSynthetic.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lldb/test/python_api/exprpath_synthetic/TestExprPathSynthetic.py b/lldb/test/python_api/exprpath_synthetic/TestExprPathSynthetic.py index a70d2ca74147..356979f0248f 100644 --- a/lldb/test/python_api/exprpath_synthetic/TestExprPathSynthetic.py +++ b/lldb/test/python_api/exprpath_synthetic/TestExprPathSynthetic.py @@ -1,3 +1,4 @@ import lldbinline +import lldbtest -lldbinline.MakeInlineTest(__file__, globals()) +lldbinline.MakeInlineTest(__file__, globals(), [lldbtest.skipIfFreeBSD,lldbtest.skipIfLinux,lldbtest.skipIfWindows])