summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rw-r--r--bin/rununittests.bat20
-rwxr-xr-xbin/rununittests.sh8
2 files changed, 28 insertions, 0 deletions
diff --git a/bin/rununittests.bat b/bin/rununittests.bat
new file mode 100644
index 0000000000..4dd734a62d
--- /dev/null
+++ b/bin/rununittests.bat
@@ -0,0 +1,20 @@
+set SAVED_PWD="%CD%"
+set BATCH_PATH=%~dp0
+
+set PATH=%BATCH_PATH%..\build\Debug\bin;%PATH%
+
+cd %BATCH_PATH%..\build\tests\Debug\bin
+tst_servicemetadata.exe
+tst_servicedatabase.exe
+tst_databasemanager.exe
+tst_qservicemanager.exe
+tst_qservicefilter.exe
+tst_qserviceinterfacedescriptor.exe
+tst_qabstractsecuritysession.exe
+tst_qnetworkconfiguration
+tst_qnetworkconfigurationmanager
+tst_qnetworksession
+
+
+cd %SAVED_PWD%
+
diff --git a/bin/rununittests.sh b/bin/rununittests.sh
index efbaf2d121..982619789d 100755
--- a/bin/rununittests.sh
+++ b/bin/rununittests.sh
@@ -9,8 +9,16 @@ SAVED_PWD=$PWD;
cd $shell_path/../build/tests/Debug/bin
LD_LIBRARY_PATH=$shell_path/../build/Debug/bin:$LD_LIBRARY_PATH
+./tst_qserviceinterfacedescriptor
+./tst_servicedatabase
+./tst_databasemanager
+./tst_servicemetadata
+./tst_qservicefilter
+./tst_qservicemanager
+./tst_qabstractsecuritysession
./tst_qnetworkconfiguration
./tst_qnetworkconfigurationmanager
+./tst_qnetworksession
cd $SAVED_PWD