]> granicus.if.org Git - llvm/commitdiff
[lit] Diagnose insufficient args to internal env
authorJoel E. Denny <jdenny.ornl@gmail.com>
Thu, 22 Aug 2019 03:42:01 +0000 (03:42 +0000)
committerJoel E. Denny <jdenny.ornl@gmail.com>
Thu, 22 Aug 2019 03:42:01 +0000 (03:42 +0000)
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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@369620 91177308-0d34-0410-b5e6-96231b3b80d8

utils/lit/lit/TestRunner.py
utils/lit/tests/Inputs/shtest-env/env-args-last-is-assign.txt [new file with mode: 0644]
utils/lit/tests/Inputs/shtest-env/env-args-last-is-u-arg.txt [new file with mode: 0644]
utils/lit/tests/Inputs/shtest-env/env-args-last-is-u.txt [new file with mode: 0644]
utils/lit/tests/Inputs/shtest-env/env-args-none.txt [new file with mode: 0644]
utils/lit/tests/shtest-env.py

index f8a00567c3c19aabe6ad67f1768cf99df4cbf760..60c6979f27cdd0daf42045f367d909d4b0124498 100644 (file)
@@ -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/utils/lit/tests/Inputs/shtest-env/env-args-last-is-assign.txt b/utils/lit/tests/Inputs/shtest-env/env-args-last-is-assign.txt
new file mode 100644 (file)
index 0000000..837210f
--- /dev/null
@@ -0,0 +1 @@
+# RUN: env FOO=1
diff --git a/utils/lit/tests/Inputs/shtest-env/env-args-last-is-u-arg.txt b/utils/lit/tests/Inputs/shtest-env/env-args-last-is-u-arg.txt
new file mode 100644 (file)
index 0000000..27c81db
--- /dev/null
@@ -0,0 +1 @@
+# RUN: env -u FOO
diff --git a/utils/lit/tests/Inputs/shtest-env/env-args-last-is-u.txt b/utils/lit/tests/Inputs/shtest-env/env-args-last-is-u.txt
new file mode 100644 (file)
index 0000000..29134ac
--- /dev/null
@@ -0,0 +1 @@
+# RUN: env -u
diff --git a/utils/lit/tests/Inputs/shtest-env/env-args-none.txt b/utils/lit/tests/Inputs/shtest-env/env-args-none.txt
new file mode 100644 (file)
index 0000000..dc5cdba
--- /dev/null
@@ -0,0 +1 @@
+# RUN: env
index ceabcada677b306c67db652a14332af0c68e3410..e89bfd6156b639678cdec31a6e11527a55dffeec 100644 (file)
@@ -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: {{.}}