1
0
Fork 0
mutter-performance-source/cogl/test-fixtures/test-unit.h
Jonas Ådahl 6885c37784 cogl: Mark exported cogl symbols using COGL_EXPORT
Just like libmutter-clutter, and libmutter, mark exported symbols with
an COGL_EXPORT macro. This removes the .map and .map.in files previously
used, containing a list of semi private symbols. This symbol was out of
date, i.e. pointed to non-existing symbols, and was also replaced with
COGL_EXPORT macros.

unit_test_* symbols are exported by the help of the unit test defining
macro. test_* symbols are no longer supported as it proved unnecessary.

https://gitlab.gnome.org/GNOME/mutter/merge_requests/1059
2020-03-26 09:05:38 +01:00

33 lines
744 B
C

#ifndef _TEST_UNIT_H_
#define _TEST_UNIT_H_
#include <test-fixtures/test-utils.h>
#ifdef ENABLE_UNIT_TESTS
typedef struct _CoglUnitTest
{
const char *name;
TestFlags requirement_flags;
TestFlags known_failure_flags;
void (*run) (void);
} CoglUnitTest;
#define UNIT_TEST(NAME, REQUIREMENT_FLAGS, KNOWN_FAILURE_FLAGS) \
static void NAME (void); \
\
COGL_EXPORT \
const CoglUnitTest unit_test_##NAME; \
const CoglUnitTest unit_test_##NAME = \
{ #NAME, REQUIREMENT_FLAGS, KNOWN_FAILURE_FLAGS, NAME }; \
\
static void NAME (void)
#else /* ENABLE_UNIT_TESTS */
#define UNIT_TEST(NAME, REQUIREMENT_FLAGS, KNOWN_FAILURE_FLAGS) \
static inline void NAME (void)
#endif /* ENABLE_UNIT_TESTS */
#endif /* _TEST_UNIT_H_ */