1 # Check handling of /dev/null in command line options
2 # On windows, it should be redirected to a temp file.
4 # RUN: %{python} %S/check_args.py --my_arg /dev/null | FileCheck %s --check-prefix=CHECK1
7 # RUN: %{python} %S/check_args.py --my_arg=/dev/null | FileCheck %s --check-prefix=CHECK2
10 # RUN: %{python} %S/check_args.py -a /dev/null | FileCheck %s --check-prefix=CHECK3
13 # RUN: %{python} %S/check_args.py -a=/dev/null | FileCheck %s --check-prefix=CHECK4