From 5b7b64b9464b76d1fcbf0338360c63531416497e Mon Sep 17 00:00:00 2001 From: Alex Lisitsyn Date: Wed, 11 Jul 2018 10:39:25 +0200 Subject: [PATCH] driver: rs485 test support (remove timeout tag) Adds test functionality with TEST_CASE_MULTIPLE_DEVICES() macro for RS485 test support. --- components/driver/test/test_uart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/driver/test/test_uart.c b/components/driver/test/test_uart.c index 08023a030e..370f00ffe1 100644 --- a/components/driver/test/test_uart.c +++ b/components/driver/test/test_uart.c @@ -324,5 +324,5 @@ static void rs485_master() * correctness of RS485 interface channel communication. It requires * RS485 bus driver hardware to be connected to boards. */ -TEST_CASE_MULTIPLE_DEVICES("RS485 half duplex uart multiple devices test.", "[driver_RS485][test_env=UT_T2_RS485][timeout=200]", rs485_master, rs485_slave); +TEST_CASE_MULTIPLE_DEVICES("RS485 half duplex uart multiple devices test.", "[driver_RS485][test_env=UT_T2_RS485]", rs485_master, rs485_slave);