[llvm-commits] [LNT] r160645 - /lnt/trunk/lnt/tests/nt.py
David Blaikie
dblaikie at gmail.com
Mon Jul 23 14:17:49 PDT 2012
Author: dblaikie
Date: Mon Jul 23 16:17:48 2012
New Revision: 160645
URL: http://llvm.org/viewvc/llvm-project?rev=160645&view=rev
Log:
Remove some CBE remnants.
Modified:
lnt/trunk/lnt/tests/nt.py
Modified: lnt/trunk/lnt/tests/nt.py
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/tests/nt.py?rev=160645&r1=160644&r2=160645&view=diff
==============================================================================
--- lnt/trunk/lnt/tests/nt.py (original)
+++ lnt/trunk/lnt/tests/nt.py Mon Jul 23 16:17:48 2012
@@ -298,8 +298,6 @@
if opts.test_jit:
sample_keys.append(('jit.compile', 'JIT codegen', 'time'))
sample_keys.append(('gcc.exec', 'GCC', 'time'))
- if opts.test_cbe:
- sample_keys.append(('cbe.exec', 'CBE', 'time'))
if opts.test_llc:
sample_keys.append(('llc.exec', 'LLC', 'time'))
if opts.test_llcbeta:
@@ -471,8 +469,6 @@
# Set test selection variables.
if not opts.test_cxx:
make_variables['DISABLE_CXX'] = '1'
- if not opts.test_cbe:
- make_variables['DISABLE_CBE'] = '1'
if not opts.test_jit:
make_variables['DISABLE_JIT'] = '1'
if not opts.test_llc:
@@ -1025,9 +1021,6 @@
help="Disable C++ tests",
action="store_false", default=True)
- group.add_option("", "--enable-cbe", dest="test_cbe",
- help="Enable CBE tests",
- action="store_true", default=False)
group.add_option("", "--disable-externals", dest="test_externals",
help="Disable test suite externals (if configured)",
action="store_false", default=True)
More information about the llvm-commits
mailing list