[Win] Pass relative path in the test script.
Parameter starting with '/' could be thought as switches under Windows.
This commit is contained in:
parent
d59fb55a81
commit
99c37fc902
1 changed files with 3 additions and 1 deletions
|
@ -9,13 +9,15 @@ 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, os.path.join(SOURCE_ROOT, 'spec')])
|
||||
subprocess.check_call([atom_shell, 'spec'])
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Reference in a new issue