projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ac997e9
)
The skipOnLinux decorator wasn't calling the test method correctly (no need to pass...
author
Jim Ingham
<jingham@apple.com>
Tue, 27 Nov 2012 01:21:28 +0000
(
01:21
+0000)
committer
Jim Ingham
<jingham@apple.com>
Tue, 27 Nov 2012 01:21:28 +0000
(
01:21
+0000)
in errors on MacOS X for the tests so decorated.
llvm-svn: 168662
lldb/test/lldbtest.py
patch
|
blob
|
history
diff --git
a/lldb/test/lldbtest.py
b/lldb/test/lldbtest.py
index
3ce0d02
..
ceb1617
100644
(file)
--- a/
lldb/test/lldbtest.py
+++ b/
lldb/test/lldbtest.py
@@
-443,7
+443,7
@@
def skipOnLinux(func):
if "linux" in platform:
self.skipTest("skip on linux")
else:
- func(
self,
*args, **kwargs)
+ func(*args, **kwargs)
return wrapper
class Base(unittest2.TestCase):