115 lines
3.6 KiB
C
115 lines
3.6 KiB
C
/****************************************************************************
|
|
** gmio
|
|
** Copyright Fougue (2 Mar. 2015)
|
|
** contact@fougue.pro
|
|
**
|
|
** This software is a reusable library whose purpose is to provide complete
|
|
** I/O support for various CAD file formats (eg. STL)
|
|
**
|
|
** This software is governed by the CeCILL-B license under French law and
|
|
** abiding by the rules of distribution of free software. You can use,
|
|
** modify and/ or redistribute the software under the terms of the CeCILL-B
|
|
** license as circulated by CEA, CNRS and INRIA at the following URL
|
|
** "http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html".
|
|
****************************************************************************/
|
|
|
|
#include "utest_lib.h"
|
|
|
|
#include "../src/gmio_core/global.h"
|
|
#include "../src/gmio_core/transfer.h"
|
|
#include "../src/gmio_stl/stl_triangle.h"
|
|
|
|
#include <stddef.h>
|
|
#include <string.h>
|
|
|
|
#ifdef _MSC_VER
|
|
# pragma warning(push)
|
|
# pragma warning(disable : 4127) /* "conditional expression is constant" */
|
|
#endif
|
|
|
|
const char* test_platform__alignment()
|
|
{
|
|
UTEST_ASSERT(offsetof(gmio_stl_coords_t, x) == 0);
|
|
UTEST_ASSERT(offsetof(gmio_stl_coords_t, y) == 4);
|
|
UTEST_ASSERT(offsetof(gmio_stl_coords_t, z) == 8);
|
|
UTEST_ASSERT(sizeof(gmio_stl_coords_t) == GMIO_STL_COORDS_RAWSIZE);
|
|
|
|
UTEST_ASSERT(offsetof(gmio_stl_triangle_t, normal) == 0);
|
|
UTEST_ASSERT(offsetof(gmio_stl_triangle_t, v1) == GMIO_STL_COORDS_RAWSIZE);
|
|
UTEST_ASSERT(offsetof(gmio_stl_triangle_t, v2) == 2*GMIO_STL_COORDS_RAWSIZE);
|
|
UTEST_ASSERT(offsetof(gmio_stl_triangle_t, v3) == 3*GMIO_STL_COORDS_RAWSIZE);
|
|
UTEST_ASSERT(offsetof(gmio_stl_triangle_t, attribute_byte_count) == 4*GMIO_STL_COORDS_RAWSIZE);
|
|
UTEST_ASSERT(sizeof(gmio_stl_triangle_t) >= GMIO_STLB_TRIANGLE_RAWSIZE);
|
|
|
|
return NULL;
|
|
}
|
|
|
|
const char* test_platform__global_h()
|
|
{
|
|
UTEST_ASSERT(sizeof(int8_t) == 1);
|
|
UTEST_ASSERT(sizeof(uint8_t) == 1);
|
|
|
|
UTEST_ASSERT(sizeof(int16_t) == 2);
|
|
UTEST_ASSERT(sizeof(uint16_t) == 2);
|
|
|
|
UTEST_ASSERT(sizeof(int32_t) == 4);
|
|
UTEST_ASSERT(sizeof(uint32_t) == 4);
|
|
|
|
UTEST_ASSERT(sizeof(gmio_float32_t) == 4);
|
|
UTEST_ASSERT(sizeof(gmio_float64_t) == 8);
|
|
|
|
return NULL;
|
|
}
|
|
|
|
const char* test_platform__compiler()
|
|
{
|
|
/* Check that initialization with { 0 } works as expected
|
|
*
|
|
* Depending on your version, GCC can incorrectly reports the warning
|
|
* "missing braces around initializer [-Wmissing-braces]"
|
|
* See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53119
|
|
*/
|
|
{
|
|
const gmio_transfer_t trsf_null_bracket0 = { 0 };
|
|
gmio_transfer_t trsf_null_memset0;
|
|
|
|
memset(&trsf_null_memset0, 0, sizeof(gmio_transfer_t));
|
|
|
|
UTEST_ASSERT(memcmp(
|
|
&trsf_null_bracket0,
|
|
&trsf_null_memset0,
|
|
sizeof(gmio_transfer_t))
|
|
== 0);
|
|
|
|
UTEST_ASSERT(sizeof(gmio_transfer_t) >= (sizeof(gmio_stream_t)
|
|
+ sizeof(gmio_buffer_t)
|
|
+ sizeof(gmio_task_iface_t)));
|
|
}
|
|
|
|
/* Check sizeof() operator with fixed-size arrays */
|
|
{
|
|
uint8_t buff[4 * 1024]; /* 4KB */
|
|
UTEST_ASSERT(sizeof(buff) == 4 * 1024);
|
|
}
|
|
|
|
/* gmio doesn't support platforms where NULL != 0 */
|
|
UTEST_ASSERT(NULL == 0);
|
|
|
|
return NULL;
|
|
}
|
|
|
|
#ifdef _MSC_VER
|
|
# pragma warning(pop)
|
|
#endif
|
|
|
|
const char* all_tests()
|
|
{
|
|
UTEST_SUITE_START();
|
|
UTEST_RUN(test_platform__alignment);
|
|
UTEST_RUN(test_platform__global_h);
|
|
UTEST_RUN(test_platform__compiler);
|
|
return NULL;
|
|
}
|
|
|
|
UTEST_MAIN(all_tests)
|