diff options
author | OpenGnSys Support Team <soporte-og@soleta.eu> | 2020-06-19 11:19:09 +0200 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2020-06-19 11:19:55 +0200 |
commit | 333abbe160c3218c8525026518b8cc635dde299f (patch) | |
tree | a74bde470ae5931ae3f78b6f6357581c44ced82f /tests/run-tests.py | |
parent | 83937b85f233370613427e1a8227993a492e0c63 (diff) |
#986 rename to ogserver
Diffstat (limited to 'tests/run-tests.py')
-rwxr-xr-x | tests/run-tests.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py index 1a59a34..ba28acd 100755 --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -26,16 +26,16 @@ if os.getuid() is not 0: print('You need to be root to run these tests :-)') exit() -if os.path.isfile('../ogAdmServer') is not True: - print('You need to build the ogAdmServer binary to run these tests :-)') +if os.path.isfile('../ogserver') is not True: + print('You need to build the ogserver binary to run these tests :-)') exit() start_mysql(); -subprocess.Popen(['../ogAdmServer', '-f', 'config/ogAdmServer.cfg']) +subprocess.Popen(['../ogserver', '-f', 'config/ogserver.cfg']) subprocess.run('python3 -m unittest discover -s units -v', shell=True) stop_mysql(); -subprocess.run(['pkill', 'ogAdmServer']) +subprocess.run(['pkill', 'ogserver']) |