Hi clayborg,

Running tests on different platforms or with different numbers of threads can 
result in different sorting for the same set of failures.  This makes comparing 
failures more difficult.  This patch sorts test failures by test name.

http://reviews.llvm.org/D5904

Files:
  test/dosep.py
Index: test/dosep.py
===================================================================
--- test/dosep.py
+++ test/dosep.py
@@ -111,6 +111,7 @@
 
     print "Ran %d tests." % num_tests
     if len(failed) > 0:
+        failed.sort()
         print "Failing Tests (%d)" % len(failed)
         for f in failed:
           print "FAIL: LLDB (suite) :: %s (%s)" % (f, system_info)
_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

Reply via email to