1234567891011121314151617181920212223242526 |
- import subprocess
- import sys
- import os
- def start(args, logfile, errfile):
- if os.name == 'nt':
- subprocess.call("set GOPATH=C:\\FrameworkBenchmarks\\webgo&&go get ./...", shell=True, cwd="webgo", stderr=errfile, stdout=logfile)
- subprocess.Popen("setup.bat", shell=True, cwd="webgo", stderr=errfile, stdout=logfile)
- return 0
- os.environ["GOPATH"] = os.path.expanduser('~/FrameworkBenchmarks/webgo')
- subprocess.call("go get ./...", shell=True, cwd="webgo", stderr=errfile, stdout=logfile)
- subprocess.Popen("go run src/hello/hello.go".rsplit(" "), cwd="webgo", stderr=errfile, stdout=logfile)
- return 0
- def stop(logfile, errfile):
- if os.name == 'nt':
- subprocess.call("taskkill /f /im go.exe > NUL", shell=True, stderr=errfile, stdout=logfile)
- subprocess.call("taskkill /f /im hello.exe > NUL", shell=True, stderr=errfile, stdout=logfile)
- return 0
- p = subprocess.Popen(['ps', 'aux'], stdout=subprocess.PIPE)
- out, err = p.communicate()
- for line in out.splitlines():
- if 'hello' in line:
- pid = int(line.split(None, 2)[1])
- os.kill(pid, 15)
- return 0
|