forked from OSchip/llvm-project
[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
This commit is contained in:
parent
7d5bc55433
commit
3c577bb415
|
@ -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)
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
# RUN: env FOO=1
|
|
@ -0,0 +1 @@
|
|||
# RUN: env -u FOO
|
|
@ -0,0 +1 @@
|
|||
# RUN: env -u
|
|
@ -0,0 +1 @@
|
|||
# RUN: env
|
|
@ -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: {{.}}
|
||||
|
|
Loading…
Reference in New Issue