10 lines
211 B
Text
10 lines
211 B
Text
|
# Simple uses of '!'
|
||
|
|
||
|
# RUN: ! %{python} fail.py
|
||
|
# RUN: ! ! %{python} pass.py
|
||
|
# RUN: ! ! ! %{python} fail.py
|
||
|
# RUN: ! ! ! ! %{python} pass.py
|
||
|
|
||
|
# pass.py succeeds but we expect failure
|
||
|
# RUN: ! %{python} pass.py
|