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-15 01:16:25 +08:00
subprocess.call('./build')
2015-10-15 01:29:21 +08:00
if os.path.isdir('../bin') and os.path.isfile('../bin/xlnt.test'):
os.chdir('../bin')
subprocess.call(['./xlnt.test'])