Skip to content

Commit 1602058

Browse files
committedJul 8, 2019
[lit] Parse command-line options from LIT_OPTS
Similar to `FILECHECK_OPTS` for FileCheck, `LIT_OPTS` makes it easy to adjust lit behavior when running the test suite via ninja. For example: ``` $ LIT_OPTS='--time-tests -vv --filter=threadprivate' \ ninja check-clang-openmp ``` Reviewed By: probinson Differential Revision: https://reviews.llvm.org/D64135 llvm-svn: 365313
1 parent 8cf99a1 commit 1602058

File tree

5 files changed

+49
-1
lines changed

5 files changed

+49
-1
lines changed
 

‎llvm/docs/CommandGuide/lit.rst

+5
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@ Finally, :program:`lit` also supports additional options for only running a
3838
subset of the options specified on the command line, see
3939
:ref:`selection-options` for more information.
4040

41+
:program:`lit` parses options from the environment variable ``LIT_OPTS`` after
42+
parsing options from the command line. ``LIT_OPTS`` is primarily useful for
43+
supplementing or overriding the command-line options supplied to :program:`lit`
44+
by ``check`` targets defined by a project's build system.
45+
4146
Users interested in the :program:`lit` architecture or designing a
4247
:program:`lit` testing implementation should see :ref:`lit-infrastructure`.
4348

‎llvm/utils/lit/lit/main.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
import platform
1212
import random
1313
import re
14+
import shlex
1415
import sys
1516
import time
1617
import argparse
@@ -322,7 +323,8 @@ def main_with_tmp(builtinParameters):
322323
help="Show all discovered tests",
323324
action="store_true", default=False)
324325

325-
opts = parser.parse_args()
326+
opts = parser.parse_args(sys.argv[1:] +
327+
shlex.split(os.environ.get("LIT_OPTS", "")))
326328
args = opts.test_paths
327329

328330
if opts.show_version:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import lit.formats
2+
config.name = 'lit-opts'
3+
config.suffixes = ['.txt']
4+
config.test_format = lit.formats.ShTest()
5+
config.test_source_root = None
6+
config.test_exec_root = None
7+
config.substitutions.append(('%var', lit_config.params.get('var', '')))
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# RUN: echo %var

‎llvm/utils/lit/tests/lit-opts.py

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Check cases where LIT_OPTS has no effect.
2+
#
3+
# RUN: %{lit} -j 1 -s %{inputs}/lit-opts | FileCheck %s
4+
# RUN: env LIT_OPTS= %{lit} -j 1 -s %{inputs}/lit-opts | FileCheck %s
5+
# RUN: env LIT_OPTS=-s %{lit} -j 1 -s %{inputs}/lit-opts | FileCheck %s
6+
7+
# Check that LIT_OPTS can override command-line options.
8+
#
9+
# RUN: env LIT_OPTS=-a \
10+
# RUN: %{lit} -j 1 -s %{inputs}/lit-opts \
11+
# RUN: | FileCheck -check-prefix=SHOW-ALL -DVAR= %s
12+
13+
# Check that LIT_OPTS understands multiple options with arbitrary spacing.
14+
#
15+
# RUN: env LIT_OPTS='-a -v -Dvar=foobar' \
16+
# RUN: %{lit} -j 1 -s %{inputs}/lit-opts \
17+
# RUN: | FileCheck -check-prefix=SHOW-ALL -DVAR=foobar %s
18+
19+
# Check that LIT_OPTS parses shell-like quotes and escapes.
20+
#
21+
# RUN: env LIT_OPTS='-a -v -Dvar="foo bar"\ baz' \
22+
# RUN: %{lit} -j 1 -s %{inputs}/lit-opts \
23+
# RUN: | FileCheck -check-prefix=SHOW-ALL -DVAR="foo bar baz" %s
24+
25+
# CHECK: Testing: 1 tests
26+
# CHECK-NOT: PASS
27+
# CHECK: Expected Passes : 1
28+
29+
# SHOW-ALL: Testing: 1 tests
30+
# SHOW-ALL: PASS: lit-opts :: test.txt (1 of 1)
31+
# SHOW-ALL: {{^}}[[VAR]]
32+
# SHOW-ALL-NOT: PASS
33+
# SHOW-ALL: Expected Passes : 1

0 commit comments

Comments
 (0)
Please sign in to comment.