xlnt/build/test

12 lines
259 B
Plaintext
Raw Normal View History

#!/usr/bin/env python3
import os
import subprocess
os.chdir(os.path.dirname(os.path.abspath(__file__)))
2015-10-14 13:16:25 -04:00
subprocess.call('./build')
2015-10-14 13:29:21 -04:00
if os.path.isdir('../bin') and os.path.isfile('../bin/xlnt.test'):
os.chdir('../bin')
subprocess.call(['./xlnt.test'])