From 08c57b7cc8ddcdbc40c65bd2c2cc40e7fda4d205 Mon Sep 17 00:00:00 2001 From: Leonid Lazarev Date: Thu, 9 Jul 2020 16:59:44 +0300 Subject: Add tests for cloudproxy service Test cases for basic functionality verification have been added. Build of the application has been adapted for Cmake templates usage. Bug-AGL: SPEC-3485 Change-Id: Iaa4a5e393ac9971be4176e90fa5aee10a4673cd3 Signed-off-by: Leonid Lazarev (cherry picked from commit 329d8ba3fb46b8afc803ad4a9b286cd26141f2f8) --- test/afb-test/etc/CMakeLists.txt | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 test/afb-test/etc/CMakeLists.txt (limited to 'test/afb-test/etc/CMakeLists.txt') diff --git a/test/afb-test/etc/CMakeLists.txt b/test/afb-test/etc/CMakeLists.txt new file mode 100644 index 0000000..228764c --- /dev/null +++ b/test/afb-test/etc/CMakeLists.txt @@ -0,0 +1,35 @@ +########################################################################### +# Copyright 2019 Konsulko Group +# +# author:Stoyan Bogdanov +# +# Copyright 2020 MERA +# author:Leonid Lazarev (leonid.lazarev@orioninc.com) +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +########################################################################### + +################################################## +# cloudproxy test configuration files +################################################## +PROJECT_TARGET_ADD(afb-test-config) + + file(GLOB CONF_FILES "*.json") + + add_input_files("${CONF_FILES}") + + SET_TARGET_PROPERTIES(${TARGET_NAME} PROPERTIES + LABELS "TEST-CONFIG" + OUTPUT_NAME ${TARGET_NAME} + ) + -- cgit 1.2.3-korg