aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2018-10-20 02:06:34 +0200
committerRomain Forlot <romain.forlot@iot.bzh>2018-10-22 19:18:15 +0200
commitcac744e729cd8176330f57d02cdef9ed160919d8 (patch)
treec6c344a2992d38587fde2c2afd751beb63edebb3
parent4f0fc5c1b993b6590c98a4d2d82a9b343875dad5 (diff)
Be able to launch several verb in a row
You must not specify the _AFT.exitAtEnd in your LUA files if you want to be able to chain test verb calls. Else it will exit during the file which has specified the exitAtEnd call. Change-Id: I3e7f4c6efadcbada426176f51bd709413f1c7405 Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r--test/afb-test/tests/aftTest.lua2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/afb-test/tests/aftTest.lua b/test/afb-test/tests/aftTest.lua
index 5c11d1d..4315505 100644
--- a/test/afb-test/tests/aftTest.lua
+++ b/test/afb-test/tests/aftTest.lua
@@ -105,5 +105,3 @@ _AFT.describe("testAssertVerbCb",function() _AFT.assertVerbCb('aft', 'ping', {},
_AFT.describe("testAssertVerbStatusError",function() _AFT.assertVerbStatusError('aft', 'pingfail', {}) end)
_AFT.describe("testAssertVerbResponseEqualsError",function() _AFT.assertVerbResponseEqualsError('aft', 'nonexistentverb', {},"Ping Binder Daemon fails") end)
_AFT.describe("testAssertVerbCbError",function() _AFT.assertVerbCbError('aft', 'pingfail', {},_callbackError) end)
-
-_AFT.exitAtEnd()