summaryrefslogtreecommitdiff
path: root/test/network_tests/big_payload_tests/big_payload_test_local_starter.sh
diff options
context:
space:
mode:
authorDiogo Pedrosa <48529452+DiogoPedrozza@users.noreply.github.com>2023-03-13 14:09:12 +0000
committerGitHub <noreply@github.com>2023-03-13 14:09:12 +0000
commit1b427801352b5dcfdc2277f6343166c01afe97d6 (patch)
treed4e984dd100f3257ce784c9e30aefb6e60a93ab5 /test/network_tests/big_payload_tests/big_payload_test_local_starter.sh
parentfc73f40fa1501dc53210c63cb7c0d7623d106370 (diff)
parent826ebb8d352245a36ecaec32b6af61e7abf4696e (diff)
downloadvSomeIP-1b427801352b5dcfdc2277f6343166c01afe97d6.tar.gz
Merge pull request #416 from COVESA/update_3.3.03.3.0
vsomeip 3.3.0
Diffstat (limited to 'test/network_tests/big_payload_tests/big_payload_test_local_starter.sh')
-rwxr-xr-xtest/network_tests/big_payload_tests/big_payload_test_local_starter.sh52
1 files changed, 52 insertions, 0 deletions
diff --git a/test/network_tests/big_payload_tests/big_payload_test_local_starter.sh b/test/network_tests/big_payload_tests/big_payload_test_local_starter.sh
new file mode 100755
index 0000000..6439cac
--- /dev/null
+++ b/test/network_tests/big_payload_tests/big_payload_test_local_starter.sh
@@ -0,0 +1,52 @@
+#!/bin/bash
+# Copyright (C) 2015-2017 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+# Purpose: This script is needed to start the client and service with
+# one command. This is necessary as ctest - which is used to run the
+# tests - isn't able to start two binaries for one testcase. Therefore
+# the testcase simply executes this script. This script then runs client
+# and service and checks that both exit successfully.
+
+if [[ $# -gt 0 && $1 != "RANDOM" && $1 != "LIMITED" && $1 != "QUEUELIMITEDGENERAL" ]]
+then
+ echo "The only allowed parameter to this script is RANDOM or LIMITED or QUEUELIMITEDGENERAL."
+ echo "Like $0 RANDOM"
+ exit 1
+fi
+
+
+FAIL=0
+
+# Start the service
+if [[ $# -gt 0 && $1 == "RANDOM" ]]; then
+ export VSOMEIP_CONFIGURATION=big_payload_test_local_random.json
+elif [[ $# -gt 0 && $1 == "LIMITED" ]]; then
+ export VSOMEIP_CONFIGURATION=big_payload_test_local_limited.json
+elif [[ $# -gt 0 && $1 == "QUEUELIMITEDGENERAL" ]]; then
+ export VSOMEIP_CONFIGURATION=big_payload_test_local_queue_limited.json
+else
+ export VSOMEIP_CONFIGURATION=big_payload_test_local.json
+fi
+./big_payload_test_service $1 &
+
+# Start the client
+./big_payload_test_client $1 &
+
+# Wait until client and service are finished
+for job in $(jobs -p)
+do
+ # Fail gets incremented if either client or service exit
+ # with a non-zero exit code
+ wait $job || ((FAIL+=1))
+done
+
+# Check if client and server both exited successfully
+if [ $FAIL -eq 0 ]
+then
+ exit 0
+else
+ exit 1
+fi