summaryrefslogtreecommitdiff
path: root/android/tester-hdp.c
diff options
context:
space:
mode:
authorRavi kumar Veeramally <ravikumar.veeramally@linux.intel.com>2014-08-06 16:41:48 +0300
committerJohan Hedberg <johan.hedberg@intel.com>2014-08-08 16:33:34 +0300
commit120e76e69d2e35c352e87f66a9d91b8fd1359968 (patch)
treedadef147a52955d036a026ef6fedfc9981fbcbd5 /android/tester-hdp.c
parent921a4d86c15b05fe39fd84152929b05753ea67ab (diff)
downloadbluez-120e76e69d2e35c352e87f66a9d91b8fd1359968.tar.gz
android/tester: Add HDP init test case
Diffstat (limited to 'android/tester-hdp.c')
-rw-r--r--android/tester-hdp.c48
1 files changed, 48 insertions, 0 deletions
diff --git a/android/tester-hdp.c b/android/tester-hdp.c
new file mode 100644
index 000000000..0988fec89
--- /dev/null
+++ b/android/tester-hdp.c
@@ -0,0 +1,48 @@
+/*
+ * Copyright (C) 2014 Intel Corporation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+#include <stdbool.h>
+
+#include "emulator/bthost.h"
+#include "tester-main.h"
+#include "android/utils.h"
+
+static struct queue *list; /* List of hdp test cases */
+
+static struct test_case test_cases[] = {
+ TEST_CASE_BREDRLE("HDP Init",
+ ACTION_SUCCESS(dummy_action, NULL),
+ ),
+};
+
+struct queue *get_hdp_tests(void)
+{
+ uint16_t i = 0;
+
+ list = queue_new();
+
+ for (; i < sizeof(test_cases) / sizeof(test_cases[0]); ++i)
+ if (!queue_push_tail(list, &test_cases[i]))
+ return NULL;
+
+ return list;
+}
+
+void remove_hdp_tests(void)
+{
+ queue_destroy(list, NULL);
+}