diff options
Diffstat (limited to 'llvm/utils/lit/tests/Inputs/shtest-shell/check_args.py')
| -rw-r--r-- | llvm/utils/lit/tests/Inputs/shtest-shell/check_args.py | 14 | 
1 files changed, 0 insertions, 14 deletions
| diff --git a/llvm/utils/lit/tests/Inputs/shtest-shell/check_args.py b/llvm/utils/lit/tests/Inputs/shtest-shell/check_args.py deleted file mode 100644 index 2f7a2503b97..00000000000 --- a/llvm/utils/lit/tests/Inputs/shtest-shell/check_args.py +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env python - -import argparse -import platform - -parser = argparse.ArgumentParser() -parser.add_argument("--my_arg", "-a") - -args = parser.parse_args() - -answer = (platform.system() == "Windows" and -          args.my_arg == "/dev/null" and "ERROR") or "OK" - -print(answer) | 

