Lines Matching full:env
21 # Various patterns of 'not' and 'env'
23 # There's no particular pattern to the 'env' arguments except we try not to
26 # RUN: env not %{python} fail.py | FileCheck -check-prefixes=FOO-NO,BAR-NO %s
27 # RUN: not env %{python} fail.py | FileCheck -check-prefixes=FOO-NO,BAR-NO %s
29 # RUN: env FOO=1 not %{python} fail.py \
32 # RUN: not env FOO=1 BAR=1 %{python} fail.py \
35 # RUN: env FOO=1 BAR=1 not env -u FOO BAR=2 %{python} fail.py \
38 # RUN: not env FOO=1 BAR=1 not env -u FOO -u BAR %{python} pass.py \
41 # RUN: not not env FOO=1 env FOO=2 BAR=1 %{python} pass.py \
44 # RUN: env FOO=1 -u BAR env -u FOO BAR=1 not not %{python} pass.py \
48 # Various patterns of 'not', 'not --crash', and 'env'
50 # RUN: not env FOO=1 BAR=1 env FOO=2 BAR=2 not --crash %{python} pass.py \
53 # RUN: not env FOO=1 BAR=1 not --crash not %{python} pass.py \
56 # RUN: not not --crash env -u BAR not env -u FOO BAR=1 %{python} pass.py \