|
| 1 | +# Copyright (c) 2020 Project CHIP Authors |
| 2 | +# |
| 3 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +# you may not use this file except in compliance with the License. |
| 5 | +# You may obtain a copy of the License at |
| 6 | +# |
| 7 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +# |
| 9 | +# Unless required by applicable law or agreed to in writing, software |
| 10 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +# See the License for the specific language governing permissions and |
| 13 | +# limitations under the License. |
| 14 | + |
| 15 | +import("//build_overrides/chip.gni") |
| 16 | +import("//build_overrides/tizen.gni") |
| 17 | + |
| 18 | +import("${tizen_sdk_build_root}/tizen_sdk.gni") |
| 19 | + |
| 20 | +tizen_qemu_mkisofs("test-runner") { |
| 21 | + runner = "runner.sh" |
| 22 | + |
| 23 | + # Build applications used in the test. |
| 24 | + deps = [ |
| 25 | + "${chip_root}/examples/chip-tool:chip-tool", |
| 26 | + "${chip_root}/examples/lighting-app/tizen:chip-lighting-app:tpk", |
| 27 | + ] |
| 28 | + |
| 29 | + # Use artifacts created by the dependencies. |
| 30 | + assets = [ |
| 31 | + rebase_path("${root_build_dir}/chip-tool"), |
| 32 | + rebase_path( |
| 33 | + "${root_build_dir}/org.tizen.matter.example.lighting/out/org.tizen.matter.example.lighting-1.0.0.tpk"), |
| 34 | + ] |
| 35 | +} |
| 36 | + |
| 37 | +tizen_qemu_run("check") { |
| 38 | + # Enable network support, so Tizen can obtain current date/time from the |
| 39 | + # network. Correct date/time is required for the commissioning process - |
| 40 | + # attestation will fail otherwise. |
| 41 | + virtio_net = true |
| 42 | + |
| 43 | + deps = [ ":test-runner" ] |
| 44 | + mkisofs_outputs = get_target_outputs(":test-runner") |
| 45 | + iso_image = rebase_path(mkisofs_outputs[0]) |
| 46 | +} |
0 commit comments