diff options
author | 2019-06-12 16:10:32 +0300 | |
---|---|---|
committer | 2019-06-12 16:10:32 +0300 | |
commit | 6c74c69a84a981241b9ee09c3cd9814d38aea381 (patch) | |
tree | aea607b2ec6b1e77556b2829e8da1d00f1ac5c7c /test/afb-test/etc/aft-agl-gps_config.json | |
parent | 4b4a3cd279caa075878dd08561c20ff22cf8f6d1 (diff) |
tests: Fix gps test bindings
- Change the config.json prefix from aft- to aft-agl-
to match required file name notation
- Commented the unneed functions _AFT.setBeforeEach and
_AFT.setAfterEachwhich which start and stop gpsfake
for every single test. This lead to test crash.
Without these functions all tests are able to pass.
Bug-AGL: SPEC-2516
Signed-off-by: Stoyan Bogdanov <stoyan.bogdanov@konsulko.com>
Change-Id: I935f40aaa23099bad8f93abfbabd85e79a2dd1ce
Diffstat (limited to 'test/afb-test/etc/aft-agl-gps_config.json')
-rw-r--r-- | test/afb-test/etc/aft-agl-gps_config.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/afb-test/etc/aft-agl-gps_config.json b/test/afb-test/etc/aft-agl-gps_config.json new file mode 100644 index 0000000..525085b --- /dev/null +++ b/test/afb-test/etc/aft-agl-gps_config.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": "aft-gps", + "info": "AFB-test binding configuration file to test gps api.", + "require": [ + "gps" + ] + }, + "testVerb": { + "uid": "launch_all_tests", + "info": "Launch all the tests", + "action": "lua://AFT#_launch_test", + "args": { + "trace": "gps", + "files": ["gps_BasicAPITest.lua"] + } + } +}
\ No newline at end of file |