mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-07-28 03:19:11 +00:00
rebase
This commit is contained in:
parent
b6af4ab8cd
commit
fa7dd551d0
@ -1,7 +1,7 @@
|
||||
Index: llvm-toolchain-snapshot_3.8~svn251907/lldb/third_party/Python/module/unittest2/unittest2/runner.py
|
||||
Index: llvm-toolchain-snapshot_3.8~svn255217/lldb/third_party/Python/module/unittest2/unittest2/runner.py
|
||||
===================================================================
|
||||
--- llvm-toolchain-snapshot_3.8~svn251907.orig/lldb/third_party/Python/module/unittest2/unittest2/runner.py
|
||||
+++ llvm-toolchain-snapshot_3.8~svn251907/lldb/third_party/Python/module/unittest2/unittest2/runner.py
|
||||
--- llvm-toolchain-snapshot_3.8~svn255217.orig/lldb/third_party/Python/module/unittest2/unittest2/runner.py
|
||||
+++ llvm-toolchain-snapshot_3.8~svn255217/lldb/third_party/Python/module/unittest2/unittest2/runner.py
|
||||
@@ -171,9 +171,9 @@ class TextTestRunner(unittest.TextTestRu
|
||||
if hasattr(result, 'separator2'):
|
||||
self.stream.writeln(result.separator2)
|
||||
@ -15,40 +15,3 @@ Index: llvm-toolchain-snapshot_3.8~svn251907/lldb/third_party/Python/module/unit
|
||||
|
||||
expectedFails = unexpectedSuccesses = skipped = passed = failed = errored = 0
|
||||
try:
|
||||
Index: llvm-toolchain-snapshot_3.8~svn251907/lldb/packages/Python/lldbsuite/test/dotest.py
|
||||
===================================================================
|
||||
--- llvm-toolchain-snapshot_3.8~svn251907.orig/lldb/packages/Python/lldbsuite/test/dotest.py
|
||||
+++ llvm-toolchain-snapshot_3.8~svn251907/lldb/packages/Python/lldbsuite/test/dotest.py
|
||||
@@ -1878,8 +1878,8 @@ def run_suite():
|
||||
def addSuccess(self, test):
|
||||
global parsable
|
||||
super(LLDBTestResult, self).addSuccess(test)
|
||||
- if parsable:
|
||||
- self.stream.write("PASS: LLDB (%s) :: %s\n" % (self._config_string(test), str(test)))
|
||||
+# if parsable:
|
||||
+# self.stream.write("PASS: LLDB (%s) :: %s\n" % (self._config_string(test), str(test)))
|
||||
if self.results_formatter:
|
||||
self.results_formatter.handle_event(
|
||||
EventBuilder.event_for_success(test))
|
||||
@@ -1892,8 +1892,8 @@ def run_suite():
|
||||
method = getattr(test, "markError", None)
|
||||
if method:
|
||||
method()
|
||||
- if parsable:
|
||||
- self.stream.write("FAIL: LLDB (%s) :: %s\n" % (self._config_string(test), str(test)))
|
||||
+# if parsable:
|
||||
+# self.stream.write("FAIL: LLDB (%s) :: %s\n" % (self._config_string(test), str(test)))
|
||||
if self.results_formatter:
|
||||
self.results_formatter.handle_event(
|
||||
EventBuilder.event_for_error(test, err))
|
||||
@@ -1959,8 +1959,8 @@ def run_suite():
|
||||
method = getattr(test, "markSkippedTest", None)
|
||||
if method:
|
||||
method()
|
||||
- if parsable:
|
||||
- self.stream.write("UNSUPPORTED: LLDB (%s) :: %s (%s) \n" % (self._config_string(test), str(test), reason))
|
||||
+# if parsable:
|
||||
+# self.stream.write("UNSUPPORTED: LLDB (%s) :: %s (%s) \n" % (self._config_string(test), str(test), reason))
|
||||
if self.results_formatter:
|
||||
self.results_formatter.handle_event(
|
||||
EventBuilder.event_for_skip(test, reason))
|
||||
|
Loading…
Reference in New Issue
Block a user