[llvm-commits] [zorg] r121244 - /zorg/trunk/lnt/lnt/tests/nt.py
Daniel Dunbar
daniel at zuster.org
Wed Dec 8 00:40:42 PST 2010
Author: ddunbar
Date: Wed Dec 8 02:40:42 2010
New Revision: 121244
URL: http://llvm.org/viewvc/llvm-project?rev=121244&view=rev
Log:
lnt runtest nt: Fix a bug where we would pick up the wrong run_order -- the
intent was to always take the compiler version if present, but apparently I
can't spell consistently.
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=121244&r1=121243&r2=121244&view=diff
==============================================================================
--- zorg/trunk/lnt/lnt/tests/nt.py (original)
+++ zorg/trunk/lnt/lnt/tests/nt.py Wed Dec 8 02:40:42 2010
@@ -495,7 +495,7 @@
# FIXME: Pretty lame, should we just require the user to specify this?
# If the CC has a src revision, use that.
- if run_info.get('cc_src_version','').isdigit():
+ if run_info.get('cc_src_revision','').isdigit():
run_info['run_order'] = run_info['cc_src_revision']
# Otherwise, if this is a production compiler, look for a source tag. We
More information about the llvm-commits
mailing list