Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / src / test_driver / linux-cirque / EchoTest.sh
1 #!/usr/bin/env bash
2
3 #
4 # Copyright (c) 2020 Project CHIP Authors
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 #
18
19 set -e
20
21 SOURCE="${BASH_SOURCE[0]}"
22 SOURCE_DIR="$(cd -P "$(dirname "$SOURCE")" >/dev/null 2>&1 && pwd)"
23 REPO_DIR="$SOURCE_DIR/../../../"
24
25 echo_source=$REPO_DIR/src/messaging/tests/echo
26
27 function build_image() {
28     # These files should be successfully compiled elsewhere.
29     source "$REPO_DIR/scripts/activate.sh" >/dev/null
30     set -x
31     cd "$echo_source"
32     gn gen out >/dev/null
33     run_ninja -C out
34     docker build -t chip_echo_requester -f Dockerfile.requester . 2>&1
35     docker build -t chip_echo_responder -f Dockerfile.responder . 2>&1
36 }
37
38 function main() {
39     pushd .
40     build_image
41     popd
42     python3 "$SOURCE_DIR/test-echo.py"
43 }
44
45 source "$SOURCE_DIR"/shell-helpers.sh
46 main