2018-05-14 22:27:10 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 Eistec AB
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @addtogroup unittests
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @brief Data elements for the core/xfa unit test
|
|
|
|
*
|
|
|
|
* @author Joakim Nohlgård <joakim.nohlgard@eistec.se>
|
|
|
|
*/
|
|
|
|
#include "xfa.h"
|
|
|
|
#include "tests-core-xfa.h"
|
|
|
|
|
2024-11-06 20:56:49 +01:00
|
|
|
XFA(xfatest_t, xfatest, 0) _xfatest2 = { .val = 0xbeef, .text = "another test string" };
|
|
|
|
XFA_CONST(xfatest_t, xfatest_const, 0) _xfatest_const2 =
|
2022-10-27 16:11:19 +02:00
|
|
|
{ .val = 32444, .text = "const string xfa 2" };
|
2024-11-06 20:56:49 +01:00
|
|
|
XFA(xfatest_t, xfatest_use, 0) _xfatest_use2 = { .val = 11111, .text = "xfatest_use2" };
|
|
|
|
XFA_CONST(xfatest_t, xfatest_use_const, 0) _xfatest_use_const2 =
|
2022-10-27 16:11:19 +02:00
|
|
|
{ .val = 22222, .text = "xfatest_use_const2" };
|
2018-05-14 22:27:10 +02:00
|
|
|
|
|
|
|
/** @} */
|