diff options
author | Joel E. Denny <jdenny.ornl@gmail.com> | 2019-08-03 06:08:04 +0000 |
---|---|---|
committer | Joel E. Denny <jdenny.ornl@gmail.com> | 2019-08-03 06:08:04 +0000 |
commit | 2c5a60f1dcaef09ef9c01438fe1d3d7468637af4 (patch) | |
tree | a994e1bb71a3d2e0be23a13b5ca9a41e3d22b0dc /llvm/utils/lit/tests/Inputs | |
parent | 41a2847a9ae50a9cc52f754d52692357d0e28bbf (diff) | |
download | bcm5719-llvm-2c5a60f1dcaef09ef9c01438fe1d3d7468637af4.tar.gz bcm5719-llvm-2c5a60f1dcaef09ef9c01438fe1d3d7468637af4.zip |
[lit] Actually run tests for internal env command
Put the main test script in the right directory, and fix a python bug
in a local script.
Reviewed By: stella.stamenova
Differential Revision: https://reviews.llvm.org/D65623
llvm-svn: 367751
Diffstat (limited to 'llvm/utils/lit/tests/Inputs')
-rw-r--r-- | llvm/utils/lit/tests/Inputs/shtest-env/print_environment.py | 2 | ||||
-rw-r--r-- | llvm/utils/lit/tests/Inputs/shtest-env/shtest-env.py | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/llvm/utils/lit/tests/Inputs/shtest-env/print_environment.py b/llvm/utils/lit/tests/Inputs/shtest-env/print_environment.py index ac9a80e6d50..af6127670b8 100644 --- a/llvm/utils/lit/tests/Inputs/shtest-env/print_environment.py +++ b/llvm/utils/lit/tests/Inputs/shtest-env/print_environment.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -from __future__ import print_statement +from __future__ import print_function import os sorted_environment = sorted(os.environ.items()) diff --git a/llvm/utils/lit/tests/Inputs/shtest-env/shtest-env.py b/llvm/utils/lit/tests/Inputs/shtest-env/shtest-env.py deleted file mode 100644 index fc5f973e676..00000000000 --- a/llvm/utils/lit/tests/Inputs/shtest-env/shtest-env.py +++ /dev/null @@ -1,3 +0,0 @@ -# Check the env command -# -# RUN: %{lit} -a -v %{inputs}/shtest-env |