From 2af41ae56dfc547865eee42ef2c6da006e9348e4 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Wed, 17 Jul 2013 16:42:06 +0800 Subject: [PATCH] Add script to run test. --- script/test.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 script/test.py diff --git a/script/test.py b/script/test.py new file mode 100755 index 000000000000..659c2528b08c --- /dev/null +++ b/script/test.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python + +import os +import subprocess +import sys + + +SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) + + +def main(): + 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')]) + + +if __name__ == '__main__': + sys.exit(main())