From f80ab1e0739a5e8694537c4d44b5ab568fa235b4 Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Fri, 20 Jul 2018 16:07:20 +0200 Subject: Change the project name to aftest This change is made because of the config file search mechanism which is based on the middle binder name. Until a better solution is found with the prefix these are the only informations available to let you choose the correct config files. Change-Id: I416c6b8c71965bb6f38ef56ed78fc9e37b593c80 Signed-off-by: Romain Forlot --- conf.d/cmake/config.cmake | 2 +- conf.d/controller/etc/aft-aftest.json | 22 ++++++++++++++++++++++ conf.d/controller/etc/aft-test.json | 22 ---------------------- 3 files changed, 23 insertions(+), 23 deletions(-) create mode 100644 conf.d/controller/etc/aft-aftest.json delete mode 100644 conf.d/controller/etc/aft-test.json diff --git a/conf.d/cmake/config.cmake b/conf.d/cmake/config.cmake index 661995c..a9b1688 100644 --- a/conf.d/cmake/config.cmake +++ b/conf.d/cmake/config.cmake @@ -18,7 +18,7 @@ # Project Info # ------------------ -set(PROJECT_NAME afb-test) +set(PROJECT_NAME afTest) set(PROJECT_VERSION "6.0") set(PROJECT_PRETTY_NAME "Application Framework Test") set(PROJECT_DESCRIPTION "Binding used to test other binding") diff --git a/conf.d/controller/etc/aft-aftest.json b/conf.d/controller/etc/aft-aftest.json new file mode 100644 index 0000000..3df6ba1 --- /dev/null +++ b/conf.d/controller/etc/aft-aftest.json @@ -0,0 +1,22 @@ +{ + "id": "http://iot.bzh/download/public/schema/json/ctl-schema.json#", + "$schema": "http://iot.bzh/download/public/schema/json/ctl-schema.json#", + "metadata": { + "uid": "Test", + "version": "1.0", + "api": "afTest", + "info": "Binding made to tests other bindings", + "require": [ + "hello" + ] + }, + "testVerb": { + "uid": "launch_all_tests", + "info": "Launch all the tests", + "action": "lua://AFT#_launch_test", + "args": { + "trace": "hello", + "files": ["aftTest.lua","helloworld.lua"] + } + } +} diff --git a/conf.d/controller/etc/aft-test.json b/conf.d/controller/etc/aft-test.json deleted file mode 100644 index 3df6ba1..0000000 --- a/conf.d/controller/etc/aft-test.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "id": "http://iot.bzh/download/public/schema/json/ctl-schema.json#", - "$schema": "http://iot.bzh/download/public/schema/json/ctl-schema.json#", - "metadata": { - "uid": "Test", - "version": "1.0", - "api": "afTest", - "info": "Binding made to tests other bindings", - "require": [ - "hello" - ] - }, - "testVerb": { - "uid": "launch_all_tests", - "info": "Launch all the tests", - "action": "lua://AFT#_launch_test", - "args": { - "trace": "hello", - "files": ["aftTest.lua","helloworld.lua"] - } - } -} -- cgit 1.2.3-korg