Sign in
llvm
/
llvm-project
/
41a94de75caacb979070ec7a010dfe3c4e9f116f
/
.
/
llvm
/
utils
/
lit
/
tests
/
Inputs
/
shtest-format
/
external_shell
/
write-control-chars.py
blob: 34f08a03de0e765033781ca29ec77285569139e6 [
file
]
#!/usr/bin/env python
from
__future__
import
print_function
import
sys
print
(
"a line with \x1b[2;30;41mcontrol characters\x1b[0m."
)
sys
.
exit
(
1
)