[llvm-commits] [zorg] r103207 - /zorg/trunk/lnt/lnt/tests/nt.py

Daniel Dunbar daniel at zuster.org
Thu May 6 16:00:26 PDT 2010


Author: ddunbar
Date: Thu May  6 18:00:26 2010
New Revision: 103207

URL: http://llvm.org/viewvc/llvm-project?rev=103207&view=rev
Log:
LNT/nt: Fix reversed condition with --small argument.

Modified:
    zorg/trunk/lnt/lnt/tests/nt.py

Modified: zorg/trunk/lnt/lnt/tests/nt.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/lnt/lnt/tests/nt.py?rev=103207&r1=103206&r2=103207&view=diff
==============================================================================
--- zorg/trunk/lnt/lnt/tests/nt.py (original)
+++ zorg/trunk/lnt/lnt/tests/nt.py Thu May  6 18:00:26 2010
@@ -464,7 +464,7 @@
 
         group.add_option("", "--small", dest="test_small",
                          help="Use smaller test inputs and disable large tests",
-                         action="store_false", default=True)
+                         action="store_true", default=False)
 
         group.add_option("", "--only-test", dest="only_test", metavar="PATH",
                          help="Only run tests under PATH",





More information about the llvm-commits mailing list