Added the missing noinitwrongthread Unix tests.
This commit is contained in:
parent
1dd0372593
commit
d5c06108d6
|
@ -0,0 +1,5 @@
|
||||||
|
// 28 may 2019
|
||||||
|
|
||||||
|
// This file should NOT have include guards as it is intended to be included more than once; see noinitwrongthread_unix.c for details.
|
||||||
|
|
||||||
|
allcallsCase(uiUnixControlHandle, NULL)
|
|
@ -35,8 +35,12 @@ elif libui_OS == 'haiku'
|
||||||
else
|
else
|
||||||
libui_test_sources += files([
|
libui_test_sources += files([
|
||||||
'controls_unix.c',
|
'controls_unix.c',
|
||||||
|
'noinitwrongthread_unix.c',
|
||||||
'window_unix.c',
|
'window_unix.c',
|
||||||
])
|
])
|
||||||
|
libui_allcalls_headers += files([
|
||||||
|
'allcalls_unix.h',
|
||||||
|
])
|
||||||
endif
|
endif
|
||||||
|
|
||||||
libui_test_sources_without_cases = [
|
libui_test_sources_without_cases = [
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
// 28 may 2019
|
||||||
|
#include "test_unix.h"
|
||||||
|
#include "thread.h"
|
||||||
|
|
||||||
|
#define allcallsHeader "allcalls_unix.h"
|
||||||
|
#include "noinitwrongthreadimpl.h"
|
Loading…
Reference in New Issue