summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/config/ogserver.cfg (renamed from tests/config/ogAdmServer.cfg)0
-rwxr-xr-xtests/run-tests.py8
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/config/ogAdmServer.cfg b/tests/config/ogserver.cfg
index 41d812b..41d812b 100644
--- a/tests/config/ogAdmServer.cfg
+++ b/tests/config/ogserver.cfg
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'])