From 9afec68124039e6fb0064d3d7942ca17ab6367c5 Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Wed, 30 Jul 2014 11:36:30 +0200 Subject: [PATCH] android/tester: Remove controller type from test name This was not allowing to run specific group of tests. Also it is test implementaion detail whenever emulated device is dual or not and doesn't need to be reported. --- android/tester-main.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/tester-main.h b/android/tester-main.h index b70d19318..de9061ae9 100644 --- a/android/tester-main.h +++ b/android/tester-main.h @@ -52,14 +52,14 @@ #define TEST_CASE_BREDR(text, ...) { \ HCIEMU_TYPE_BREDR, \ - "[BR/EDR] "text, \ + text, \ sizeof((struct step[]) {__VA_ARGS__}) / sizeof(struct step), \ (struct step[]) {__VA_ARGS__}, \ } #define TEST_CASE_BREDRLE(text, ...) { \ HCIEMU_TYPE_BREDRLE, \ - "[DUAL] "text, \ + text, \ sizeof((struct step[]) {__VA_ARGS__}) / sizeof(struct step), \ (struct step[]) {__VA_ARGS__}, \ } -- 2.47.3