[llvm-commits] [zorg] r147038 - /zorg/trunk/lnt/lnt/lnttool/create.py
Daniel Dunbar
daniel at zuster.org
Tue Dec 20 22:21:56 PST 2011
Author: ddunbar
Date: Wed Dec 21 00:21:56 2011
New Revision: 147038
URL: http://llvm.org/viewvc/llvm-project?rev=147038&view=rev
Log:
[lnt/v0.4] lnt create: Fix up some errors in the default NT test suite definition.
Modified:
zorg/trunk/lnt/lnt/lnttool/create.py
Modified: zorg/trunk/lnt/lnt/lnttool/create.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/lnt/lnt/lnttool/create.py?rev=147038&r1=147037&r2=147038&view=diff
==============================================================================
--- zorg/trunk/lnt/lnt/lnttool/create.py (original)
+++ zorg/trunk/lnt/lnt/lnttool/create.py Wed Dec 21 00:21:56 2011
@@ -107,11 +107,11 @@
# We are only interested in simple runs, so we expect exactly four fields
# per test.
ts.sample_fields.append(testsuite.SampleField(
- "compile_time", real_sample_type, ".compile.time"))
+ "compile_time", real_sample_type, ".compile"))
ts.sample_fields.append(testsuite.SampleField(
"compile_status", status_sample_type, ".compile.status"))
ts.sample_fields.append(testsuite.SampleField(
- "execution_time", real_sample_type, ".exec.time"))
+ "execution_time", real_sample_type, ".exec"))
ts.sample_fields.append(testsuite.SampleField(
"execution_status", status_sample_type, ".exec.status"))
More information about the llvm-commits
mailing list