bstinson / centos / t_functional

Forked from centos/t_functional 3 years ago
Clone
Blob Blame History Raw
#!/bin/sh
# Author: Christoph Galuschka <christoph.galuschka@chello.at>
#         Athmane Madjodj <athmanem@gmail.com>

t_Log "Running $0 - python can print Hello World"

# creating source file
FILE='/var/tmp/python-test.py'

cat > $FILE <<EOF
print "hello, centos!\n"
EOF

# Executing python
python $FILE -o $EXE | grep -cq 'hello. centos!'

t_CheckExitStatus $?

# remove files
/bin/rm $FILE