The skipOnLinux decorator wasn't calling the test method correctly (no need to pass in the "self") resulting
in errors on MacOS X for the tests so decorated.
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@168662 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/lldbtest.py b/test/lldbtest.py
index 3ce0d02..ceb1617 100644
--- a/test/lldbtest.py
+++ b/test/lldbtest.py
@@ -443,7 +443,7 @@
if "linux" in platform:
self.skipTest("skip on linux")
else:
- func(self, *args, **kwargs)
+ func(*args, **kwargs)
return wrapper
class Base(unittest2.TestCase):