[LNT] r180060 - Set the nts arch via the cc_target flag like the compile time tests.
Michael Gottesman
mgottesman at apple.com
Mon Apr 22 15:38:55 PDT 2013
Author: mgottesman
Date: Mon Apr 22 17:38:55 2013
New Revision: 180060
URL: http://llvm.org/viewvc/llvm-project?rev=180060&view=rev
Log:
Set the nts arch via the cc_target flag like the compile time tests.
Modified:
lnt/trunk/lnt/server/reporting/summaryreport.py
Modified: lnt/trunk/lnt/server/reporting/summaryreport.py
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/server/reporting/summaryreport.py?rev=180060&r1=180059&r2=180060&view=diff
==============================================================================
--- lnt/trunk/lnt/server/reporting/summaryreport.py (original)
+++ lnt/trunk/lnt/server/reporting/summaryreport.py Mon Apr 22 17:38:55 2013
@@ -196,7 +196,7 @@ class SummaryReport(object):
test_name = test.name
# The arch and build mode are derived from the run flags.
- arch = run_parameters['ARCH']
+ arch = run_parameters['cc_target'].split('-')[0]
if '86' in arch:
arch = 'x86'
More information about the llvm-commits
mailing list