Sign in
qemu
/
meson
/
refs/heads/docbuild
/
.
/
test cases
/
common
/
77 external test program
/
mytest.py
blob: 9947773f7a267f631b6a6440469daf71697d8885 [
file
] [
log
] [
blame
]
#!/usr/bin/env python3
from
__future__
import
print_function
import
sys
if
sys
.
argv
[
1
]
==
'correct'
:
print
(
'Argument is correct.'
)
sys
.
exit
(
0
)
print
(
'Argument is incorrect:'
,
sys
.
argv
[
1
])
sys
.
exit
(
1
)