The LOG_MODULE_REGISTER() was not called anywhere so if one tried to enable logging, there was a linker error about missing logger functions. Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
50 lines
991 B
C
50 lines
991 B
C
/*
|
|
* Copyright (c) 2020 Friedt Professional Engineering Services, Inc
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#define _main_defined 1
|
|
|
|
#include "_main.h"
|
|
|
|
LOG_MODULE_REGISTER(net_test, CONFIG_NET_SOCKETS_LOG_LEVEL);
|
|
|
|
#include <zephyr/logging/log.h>
|
|
#include <zephyr/net/socket.h>
|
|
#include <zephyr/ztest.h>
|
|
|
|
static ZTEST_DMEM struct net_socketpair_fixture fixture;
|
|
static void *setup(void)
|
|
{
|
|
k_thread_system_pool_assign(k_current_get());
|
|
|
|
return &fixture;
|
|
}
|
|
|
|
static void before(void *arg)
|
|
{
|
|
struct net_socketpair_fixture *fixture = arg;
|
|
|
|
for (int i = 0; i < 2; ++i) {
|
|
if (fixture->sv[i] >= 0) {
|
|
fixture->sv[i] = -1;
|
|
}
|
|
}
|
|
zassert_ok(zsock_socketpair(AF_UNIX, SOCK_STREAM, 0, fixture->sv));
|
|
}
|
|
|
|
static void after(void *arg)
|
|
{
|
|
struct net_socketpair_fixture *fixture = arg;
|
|
|
|
for (int i = 0; i < 2; ++i) {
|
|
if (fixture->sv[i] >= 0) {
|
|
zassert_ok(zsock_close(fixture->sv[i]));
|
|
fixture->sv[i] = -1;
|
|
}
|
|
}
|
|
}
|
|
|
|
ZTEST_SUITE(net_socketpair, NULL, setup, before, after, NULL);
|