From cac744e729cd8176330f57d02cdef9ed160919d8 Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Sat, 20 Oct 2018 02:06:34 +0200 Subject: 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 --- test/afb-test/tests/aftTest.lua | 2 -- 1 file changed, 2 deletions(-) (limited to 'test') 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() -- cgit