electron/script/test.py
Cheng Zhao 99c37fc902 [Win] Pass relative path in the test script.
Parameter starting with '/' could be thought as switches under Windows.
2013-07-19 10:41:24 +08:00

24 lines
512 B
Python
Executable file

#!/usr/bin/env python
import os
import subprocess
import sys
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
def main():
os.chdir(SOURCE_ROOT)
if sys.platform == 'darwin':
atom_shell = os.path.join(SOURCE_ROOT, 'out', 'Debug', 'Atom.app',
'Contents', 'MacOS', 'Atom')
else:
atom_shell = os.path.join(SOURCE_ROOT, 'out', 'Debug', 'atom.exe')
subprocess.check_call([atom_shell, 'spec'])
if __name__ == '__main__':
sys.exit(main())