[LNT] r265429 - -gmodules is not useful in the single file tests
Chris Matthews via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 5 10:52:20 PDT 2016
Author: cmatthews
Date: Tue Apr 5 12:52:20 2016
New Revision: 265429
URL: http://llvm.org/viewvc/llvm-project?rev=265429&view=rev
Log:
-gmodules is not useful in the single file tests
I was wrong, gmodules is not really useful for single file tests, omit
them.
Modified:
lnt/trunk/lnt/tests/compile.py
Modified: lnt/trunk/lnt/tests/compile.py
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/tests/compile.py?rev=265429&r1=265428&r2=265429&view=diff
==============================================================================
--- lnt/trunk/lnt/tests/compile.py (original)
+++ lnt/trunk/lnt/tests/compile.py Tue Apr 5 12:52:20 2016
@@ -27,16 +27,12 @@ from lnt.util import stats
# For each test, compile with all these combinations of flags.
DEFAULT_FLAGS_TO_TEST = [('-O0',),
('-O0', '-g',),
- ('-O0', '-gmodules',),
('-Os'),
('-Os', '-g'),
- ('-Os', '-gmodules'),
('-O3',),
('-O3', '-g'),
- ('-O3', '-gmodules'),
('-Oz',),
- ('-Oz', '-g'),
- ('-Oz', '-gmodules')]
+ ('-Oz', '-g')]
def args_to_quoted_string(args):
More information about the llvm-commits
mailing list