mirror of
https://github.com/espressif/openthread.git
synced 2026-08-30 22:09:54 +00:00
Fix otNetifAddress declaration to work between C & C++ (#1037)
* Fix otNetifAddress declaration to work between C & C++
This commit is contained in:
@@ -80,6 +80,8 @@ void test_packed1();
|
||||
void test_packed2();
|
||||
void test_packed_union();
|
||||
void test_packed_enum();
|
||||
void test_addr_sizes();
|
||||
void test_addr_bitfield();
|
||||
|
||||
// test_fuzz.cpp
|
||||
void TestFuzz(uint32_t aSeconds);
|
||||
@@ -155,6 +157,8 @@ namespace Thread
|
||||
TEST_METHOD(test_packed2) { ::test_packed2(); }
|
||||
TEST_METHOD(test_packed_union) { ::test_packed_union(); }
|
||||
TEST_METHOD(test_packed_enum) { ::test_packed_enum(); }
|
||||
TEST_METHOD(test_addr_sizes) { ::test_addr_sizes(); }
|
||||
TEST_METHOD(test_addr_bitfield) { ::test_addr_bitfield(); }
|
||||
|
||||
// test_settings.cpp
|
||||
TEST_METHOD(RunTestFuzz) { ::TestFuzz(30); }
|
||||
|
||||
Reference in New Issue
Block a user