Don't return a tuple from the skip test function.
authorZachary Turner <zturner@google.com>
Tue, 2 Feb 2016 22:22:53 +0000 (22:22 +0000)
committerZachary Turner <zturner@google.com>
Tue, 2 Feb 2016 22:22:53 +0000 (22:22 +0000)
commitc67466054f8dd467283f17fd31c2c7763ab25016
treef318ae510a6696e2d9173e0ad582a1197d64da4c
parent3a92c35539bd729e12bed95c65c2878f7fb93983
Don't return a tuple from the skip test function.

Previously we were returning a tuple of (bool, skip_reason) from
the tuple function.  This makes for some awkward code, especially
since a value of True for the first argument implies that the
second argument is None, and a value of False implies that the
second argument is not None.  So it was basically redundant, and
with this patch we simply return the skip reason or None directly.

llvm-svn: 259590
lldb/packages/Python/lldbsuite/test/functionalities/inferior-assert/TestInferiorAssert.py
lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/TestJITLoaderGDB.py
lldb/packages/Python/lldbsuite/test/lldbtest.py