summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorOpenGnSys Support Team <soporte-og@soleta.eu>2020-06-19 11:19:09 +0200
committerOpenGnSys Support Team <soporte-og@soleta.eu>2020-06-19 11:19:55 +0200
commit333abbe160c3218c8525026518b8cc635dde299f (patch)
treea74bde470ae5931ae3f78b6f6357581c44ced82f /tests
parent83937b85f233370613427e1a8227993a492e0c63 (diff)
#986 rename to ogserver
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'])