zephyr/tests/drivers/i2c/i2c_api/src/main.c
Anas Nashif ffaba63b10 boards: remove arduino 101 and related boards
This board and SoC was discontinued some time ago and is currently not
maintained in the zephyr tree.
Remove all associated configurations and variants from the tree.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2019-07-29 21:30:25 -07:00

20 lines
372 B
C

/*
* Copyright (c) 2016 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr.h>
#include <ztest.h>
extern void test_i2c_gy271(void);
extern void test_i2c_burst_gy271(void);
void test_main(void)
{
ztest_test_suite(i2c_test,
ztest_unit_test(test_i2c_gy271),
ztest_unit_test(test_i2c_burst_gy271));
ztest_run_test_suite(i2c_test);
}