提交 9fa8ae37 authored 作者: james@mackie's avatar james@mackie

added option to specify python cmd for gof subtest... its hackish though

上级 177cc49a
......@@ -18,6 +18,9 @@ def test_root_dir():
unittest.TextTestRunner(verbosity=1).run(suite)
if __name__ == '__main__':
os.system('cd gof; python autotest.py')
try:
os.system('cd gof; %s autotest.py' % sys.argv[1])
except IndexError, e:
os.system('cd gof; python autotest.py')
test_root_dir()
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论