diff options
| author | Joel E. Denny <jdenny.ornl@gmail.com> | 2019-08-22 03:42:01 +0000 |
|---|---|---|
| committer | Joel E. Denny <jdenny.ornl@gmail.com> | 2019-08-22 03:42:01 +0000 |
| commit | 3c577bb415a59c033c1fb2fe1de6a3bbb0abfe0a (patch) | |
| tree | 44bac2446547613bf983b65cc9e2e757dbe8a7dd | |
| parent | 7d5bc554333e28749554c313a207d8267da69837 (diff) | |
| download | bcm5719-llvm-3c577bb415a59c033c1fb2fe1de6a3bbb0abfe0a.tar.gz bcm5719-llvm-3c577bb415a59c033c1fb2fe1de6a3bbb0abfe0a.zip | |
[lit] Diagnose insufficient args to internal env
Without this patch, failing to provide a subcommand to lit's internal
`env` results in either a python `IndexError` or an attempt to execute
the final `env` argument, such as `FOO=1`, as a command. This patch
diagnoses those cases with a more helpful message.
Reviewed By: stella.stamenova
Differential Revision: https://reviews.llvm.org/D66482
llvm-svn: 369620
6 files changed, 31 insertions, 3 deletions
diff --git a/llvm/utils/lit/lit/TestRunner.py b/llvm/utils/lit/lit/TestRunner.py index f8a00567c3c..60c6979f27c 100644 --- a/llvm/utils/lit/lit/TestRunner.py +++ b/llvm/utils/lit/lit/TestRunner.py @@ -238,7 +238,7 @@ def quote_windows_command(seq): # args are from 'export' or 'env' command. # Returns copy of args without those commands or their arguments. def updateEnv(env, args): - arg_idx = 1 + arg_idx_next = len(args) unset_next_env_var = False for arg_idx, arg in enumerate(args[1:]): # Support for the -u flag (unsetting) for env command @@ -257,9 +257,10 @@ def updateEnv(env, args): key, eq, val = arg.partition('=') # Stop if there was no equals. if eq == '': + arg_idx_next = arg_idx + 1 break env.env[key] = val - return args[arg_idx+1:] + return args[arg_idx_next:] def executeBuiltinEcho(cmd, shenv): """Interpret a redirected echo command""" @@ -880,6 +881,9 @@ def _executeShCmd(cmd, shenv, results, timeoutHelper): # env FOO=1 llc < %s | env BAR=2 llvm-mc | FileCheck %s cmd_shenv = ShellEnvironment(shenv.cwd, shenv.env) args = updateEnv(cmd_shenv, j.args) + if not args: + raise InternalShellError(j, + "Error: 'env' requires a subcommand") stdin, stdout, stderr = processRedirects(j, default_stdin, cmd_shenv, opened_files) diff --git a/llvm/utils/lit/tests/Inputs/shtest-env/env-args-last-is-assign.txt b/llvm/utils/lit/tests/Inputs/shtest-env/env-args-last-is-assign.txt new file mode 100644 index 00000000000..837210f0196 --- /dev/null +++ b/llvm/utils/lit/tests/Inputs/shtest-env/env-args-last-is-assign.txt @@ -0,0 +1 @@ +# RUN: env FOO=1 diff --git a/llvm/utils/lit/tests/Inputs/shtest-env/env-args-last-is-u-arg.txt b/llvm/utils/lit/tests/Inputs/shtest-env/env-args-last-is-u-arg.txt new file mode 100644 index 00000000000..27c81db8ed5 --- /dev/null +++ b/llvm/utils/lit/tests/Inputs/shtest-env/env-args-last-is-u-arg.txt @@ -0,0 +1 @@ +# RUN: env -u FOO diff --git a/llvm/utils/lit/tests/Inputs/shtest-env/env-args-last-is-u.txt b/llvm/utils/lit/tests/Inputs/shtest-env/env-args-last-is-u.txt new file mode 100644 index 00000000000..29134ac2e29 --- /dev/null +++ b/llvm/utils/lit/tests/Inputs/shtest-env/env-args-last-is-u.txt @@ -0,0 +1 @@ +# RUN: env -u diff --git a/llvm/utils/lit/tests/Inputs/shtest-env/env-args-none.txt b/llvm/utils/lit/tests/Inputs/shtest-env/env-args-none.txt new file mode 100644 index 00000000000..dc5cdbad09a --- /dev/null +++ b/llvm/utils/lit/tests/Inputs/shtest-env/env-args-none.txt @@ -0,0 +1 @@ +# RUN: env diff --git a/llvm/utils/lit/tests/shtest-env.py b/llvm/utils/lit/tests/shtest-env.py index ceabcada677..e89bfd6156b 100644 --- a/llvm/utils/lit/tests/shtest-env.py +++ b/llvm/utils/lit/tests/shtest-env.py @@ -1,12 +1,30 @@ # Check the env command # -# RUN: %{lit} -j 1 -a -v %{inputs}/shtest-env \ +# RUN: not %{lit} -j 1 -a -v %{inputs}/shtest-env \ # RUN: | FileCheck -match-full-lines %s # # END. # Make sure env commands are included in printed commands. +# CHECK: -- Testing: 7 tests{{.*}} + +# CHECK: FAIL: shtest-env :: env-args-last-is-assign.txt ({{[^)]*}}) +# CHECK: Error: 'env' requires a subcommand +# CHECK: error: command failed with exit status: {{.*}} + +# CHECK: FAIL: shtest-env :: env-args-last-is-u-arg.txt ({{[^)]*}}) +# CHECK: Error: 'env' requires a subcommand +# CHECK: error: command failed with exit status: {{.*}} + +# CHECK: FAIL: shtest-env :: env-args-last-is-u.txt ({{[^)]*}}) +# CHECK: Error: 'env' requires a subcommand +# CHECK: error: command failed with exit status: {{.*}} + +# CHECK: FAIL: shtest-env :: env-args-none.txt ({{[^)]*}}) +# CHECK: Error: 'env' requires a subcommand +# CHECK: error: command failed with exit status: {{.*}} + # CHECK: PASS: shtest-env :: env-u.txt ({{[^)]*}}) # CHECK: $ "{{[^"]*}}" "print_environment.py" # CHECK: $ "env" "-u" "FOO" "{{[^"]*}}" "print_environment.py" @@ -21,3 +39,5 @@ # CHECK: $ "env" "A_FOO=1" "-u" "FOO" "B_BAR=2" "-u" "BAR" "C_OOF=3" "{{[^"]*}}" "print_environment.py" # CHECK: Expected Passes : 3 +# CHECK: Unexpected Failures: 4 +# CHECK-NOT: {{.}} |

