blob: 4e054021a1de24dd2e7062b7b2982aa7a8f370ed [file] [log] [blame]
Karl Schultz929a1002016-02-04 11:33:21 -07001/*
2 * Copyright (c) 2015-2016 The Khronos Group Inc.
3 * Copyright (c) 2015-2016 Valve Corporation
4 * Copyright (c) 2015-2016 LunarG, Inc.
5 *
Jon Ashburn3ebf1252016-04-19 11:30:31 -06006 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
Karl Schultz929a1002016-02-04 11:33:21 -07009 *
Jon Ashburn3ebf1252016-04-19 11:30:31 -060010 * http://www.apache.org/licenses/LICENSE-2.0
Karl Schultz929a1002016-02-04 11:33:21 -070011 *
Jon Ashburn3ebf1252016-04-19 11:30:31 -060012 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
Karl Schultz929a1002016-02-04 11:33:21 -070017 *
18 * Author: Chia-I Wu <olvaffe@gmail.com>
19 * Author: Chris Forbes <chrisf@ijw.co.nz>
20 * Author: Courtney Goeltzenleuchter <courtney@LunarG.com>
21 * Author: Mark Lobodzinski <mark@lunarg.com>
22 * Author: Mike Stroyan <mike@LunarG.com>
23 * Author: Tobin Ehlis <tobine@google.com>
24 * Author: Tony Barbour <tony@LunarG.com>
25 */
26
Courtney Goeltzenleuchterb7f50502014-08-12 14:09:50 -060027#ifndef TEST_COMMON_H
28#define TEST_COMMON_H
29
Courtney Goeltzenleuchterb7f50502014-08-12 14:09:50 -060030#include <assert.h>
Mark Lobodzinski6d4a6d92016-09-07 16:27:38 -060031#include <stdbool.h>
32#include <stdio.h>
33#include <stdlib.h>
34#include <string.h>
Courtney Goeltzenleuchterb7f50502014-08-12 14:09:50 -060035
Ian Elliottc11750d2015-10-30 13:24:12 -060036#ifdef _WIN32
Mark Lobodzinski450e4632015-11-24 12:04:15 -070037#define NOMINMAX
38// WinSock2.h must be included *BEFORE* windows.h
39#include <winsock2.h>
Ian Elliottc11750d2015-10-30 13:24:12 -060040#endif
Mark Lobodzinskifaa90812015-11-25 13:26:15 -070041
David Pinedo9316d3b2015-11-06 12:54:48 -070042#include <vulkan/vk_sdk_platform.h>
Mark Lobodzinski6d4a6d92016-09-07 16:27:38 -060043#include <vulkan/vulkan.h>
Courtney Goeltzenleuchterb7f50502014-08-12 14:09:50 -060044
Ian Elliottc11750d2015-10-30 13:24:12 -060045#ifdef _WIN32
Mark Lobodzinski6d4a6d92016-09-07 16:27:38 -060046#pragma warning(push)
Courtney Goeltzenleuchter58f3eff2015-10-07 13:28:58 -060047/*
48 warnings 4251 and 4275 have to do with potential dll-interface mismatch
49 between library (gtest) and users. Since we build the gtest library
50 as part of the test build we know that the dll-interface will match and
51 can disable these warnings.
52 */
Mark Lobodzinski6d4a6d92016-09-07 16:27:38 -060053#pragma warning(disable : 4251)
54#pragma warning(disable : 4275)
Courtney Goeltzenleuchter58f3eff2015-10-07 13:28:58 -060055#endif
Courtney Goeltzenleuchter5b804932014-09-01 16:33:55 -060056#include "gtest-1.7.0/include/gtest/gtest.h"
Mark Lobodzinski6d4a6d92016-09-07 16:27:38 -060057#include "gtest/gtest.h"
Ian Elliottc11750d2015-10-30 13:24:12 -060058#ifdef _WIN32
Mark Lobodzinski6d4a6d92016-09-07 16:27:38 -060059#pragma warning(pop)
Courtney Goeltzenleuchter58f3eff2015-10-07 13:28:58 -060060#endif
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060061#include "vktestbinding.h"
Courtney Goeltzenleuchterb7f50502014-08-12 14:09:50 -060062
Courtney Goeltzenleuchterd8e229c2015-04-08 15:36:08 -060063#define ASSERT_VK_SUCCESS(err) ASSERT_EQ(VK_SUCCESS, err) << vk_result_string(err)
Courtney Goeltzenleuchterb7f50502014-08-12 14:09:50 -060064
Mark Lobodzinski6d4a6d92016-09-07 16:27:38 -060065static inline const char *vk_result_string(VkResult err) {
Courtney Goeltzenleuchterb7f50502014-08-12 14:09:50 -060066 switch (err) {
Mark Lobodzinski64318ba2017-01-26 13:34:13 -070067#define STR(r) \
68 case r: \
Mark Lobodzinski6d4a6d92016-09-07 16:27:38 -060069 return #r
70 STR(VK_SUCCESS);
71 STR(VK_NOT_READY);
72 STR(VK_TIMEOUT);
73 STR(VK_EVENT_SET);
74 STR(VK_EVENT_RESET);
75 STR(VK_ERROR_INITIALIZATION_FAILED);
76 STR(VK_ERROR_OUT_OF_HOST_MEMORY);
77 STR(VK_ERROR_OUT_OF_DEVICE_MEMORY);
78 STR(VK_ERROR_DEVICE_LOST);
79 STR(VK_ERROR_EXTENSION_NOT_PRESENT);
80 STR(VK_ERROR_LAYER_NOT_PRESENT);
81 STR(VK_ERROR_MEMORY_MAP_FAILED);
82 STR(VK_ERROR_INCOMPATIBLE_DRIVER);
Courtney Goeltzenleuchterb7f50502014-08-12 14:09:50 -060083#undef STR
Mark Lobodzinski64318ba2017-01-26 13:34:13 -070084 default:
85 return "UNKNOWN_RESULT";
Courtney Goeltzenleuchterb7f50502014-08-12 14:09:50 -060086 }
87}
88
Mark Lobodzinski6d4a6d92016-09-07 16:27:38 -060089static inline void test_error_callback(const char *expr, const char *file, unsigned int line, const char *function) {
Chia-I Wua9a506a2014-12-27 22:04:00 +080090 ADD_FAILURE_AT(file, line) << "Assertion: `" << expr << "'";
91}
92
Mike Stroyan4268d1f2015-07-13 14:45:35 -060093#if defined(__linux__)
Dave Houlton6c72f352018-02-06 17:49:16 -070094 /* Linux-specific common code: */
Mike Stroyan4268d1f2015-07-13 14:45:35 -060095
96#include <pthread.h>
97
98// Threads:
99typedef pthread_t test_platform_thread;
100
Mark Lobodzinski6d4a6d92016-09-07 16:27:38 -0600101static inline int test_platform_thread_create(test_platform_thread *thread, void *(*func)(void *), void *data) {
Mike Stroyan4268d1f2015-07-13 14:45:35 -0600102 pthread_attr_t thread_attr;
103 pthread_attr_init(&thread_attr);
104 return pthread_create(thread, &thread_attr, func, data);
105}
Mark Lobodzinski6d4a6d92016-09-07 16:27:38 -0600106static inline int test_platform_thread_join(test_platform_thread thread, void **retval) { return pthread_join(thread, retval); }
Mike Stroyan4268d1f2015-07-13 14:45:35 -0600107
108// Thread IDs:
109typedef pthread_t test_platform_thread_id;
Mark Lobodzinski6d4a6d92016-09-07 16:27:38 -0600110static inline test_platform_thread_id test_platform_get_thread_id() { return pthread_self(); }
Mike Stroyan4268d1f2015-07-13 14:45:35 -0600111
112// Thread mutex:
113typedef pthread_mutex_t test_platform_thread_mutex;
Mark Lobodzinski6d4a6d92016-09-07 16:27:38 -0600114static inline void test_platform_thread_create_mutex(test_platform_thread_mutex *pMutex) { pthread_mutex_init(pMutex, NULL); }
115static inline void test_platform_thread_lock_mutex(test_platform_thread_mutex *pMutex) { pthread_mutex_lock(pMutex); }
116static inline void test_platform_thread_unlock_mutex(test_platform_thread_mutex *pMutex) { pthread_mutex_unlock(pMutex); }
117static inline void test_platform_thread_delete_mutex(test_platform_thread_mutex *pMutex) { pthread_mutex_destroy(pMutex); }
Mike Stroyan4268d1f2015-07-13 14:45:35 -0600118typedef pthread_cond_t test_platform_thread_cond;
Mark Lobodzinski6d4a6d92016-09-07 16:27:38 -0600119static inline void test_platform_thread_init_cond(test_platform_thread_cond *pCond) { pthread_cond_init(pCond, NULL); }
120static inline void test_platform_thread_cond_wait(test_platform_thread_cond *pCond, test_platform_thread_mutex *pMutex) {
Mike Stroyan4268d1f2015-07-13 14:45:35 -0600121 pthread_cond_wait(pCond, pMutex);
122}
Mark Lobodzinski6d4a6d92016-09-07 16:27:38 -0600123static inline void test_platform_thread_cond_broadcast(test_platform_thread_cond *pCond) { pthread_cond_broadcast(pCond); }
Mike Stroyan4268d1f2015-07-13 14:45:35 -0600124
Mark Lobodzinski64318ba2017-01-26 13:34:13 -0700125#elif defined(_WIN32) // defined(__linux__)
Mike Stroyan4268d1f2015-07-13 14:45:35 -0600126// Threads:
127typedef HANDLE test_platform_thread;
Mark Lobodzinski6d4a6d92016-09-07 16:27:38 -0600128static inline int test_platform_thread_create(test_platform_thread *thread, void *(*func)(void *), void *data) {
Mike Stroyan4268d1f2015-07-13 14:45:35 -0600129 DWORD threadID;
Mark Lobodzinski64318ba2017-01-26 13:34:13 -0700130 *thread = CreateThread(NULL, // default security attributes
131 0, // use default stack size
Mark Lobodzinski6d4a6d92016-09-07 16:27:38 -0600132 (LPTHREAD_START_ROUTINE)func,
Mark Lobodzinski64318ba2017-01-26 13:34:13 -0700133 data, // thread function argument
134 0, // use default creation flags
135 &threadID); // returns thread identifier
Mike Stroyan4268d1f2015-07-13 14:45:35 -0600136 return (*thread != NULL);
137}
Mark Lobodzinski6d4a6d92016-09-07 16:27:38 -0600138static inline int test_platform_thread_join(test_platform_thread thread, void **retval) {
Mike Stroyan4268d1f2015-07-13 14:45:35 -0600139 return WaitForSingleObject(thread, INFINITE);
140}
141
142// Thread IDs:
143typedef DWORD test_platform_thread_id;
Mark Lobodzinski6d4a6d92016-09-07 16:27:38 -0600144static test_platform_thread_id test_platform_get_thread_id() { return GetCurrentThreadId(); }
Mike Stroyan4268d1f2015-07-13 14:45:35 -0600145
146// Thread mutex:
147typedef CRITICAL_SECTION test_platform_thread_mutex;
Mark Lobodzinski6d4a6d92016-09-07 16:27:38 -0600148static void test_platform_thread_create_mutex(test_platform_thread_mutex *pMutex) { InitializeCriticalSection(pMutex); }
149static void test_platform_thread_lock_mutex(test_platform_thread_mutex *pMutex) { EnterCriticalSection(pMutex); }
150static void test_platform_thread_unlock_mutex(test_platform_thread_mutex *pMutex) { LeaveCriticalSection(pMutex); }
151static void test_platform_thread_delete_mutex(test_platform_thread_mutex *pMutex) { DeleteCriticalSection(pMutex); }
Mike Stroyan4268d1f2015-07-13 14:45:35 -0600152typedef CONDITION_VARIABLE test_platform_thread_cond;
Mark Lobodzinski6d4a6d92016-09-07 16:27:38 -0600153static void test_platform_thread_init_cond(test_platform_thread_cond *pCond) { InitializeConditionVariable(pCond); }
154static void test_platform_thread_cond_wait(test_platform_thread_cond *pCond, test_platform_thread_mutex *pMutex) {
Mike Stroyan4268d1f2015-07-13 14:45:35 -0600155 SleepConditionVariableCS(pCond, pMutex, INFINITE);
156}
Mark Lobodzinski6d4a6d92016-09-07 16:27:38 -0600157static void test_platform_thread_cond_broadcast(test_platform_thread_cond *pCond) { WakeAllConditionVariable(pCond); }
Mark Lobodzinski64318ba2017-01-26 13:34:13 -0700158#else // defined(_WIN32)
Mike Stroyan4268d1f2015-07-13 14:45:35 -0600159
160#error The "test_common.h" file must be modified for this OS.
161
Dave Houlton6c72f352018-02-06 17:49:16 -0700162 // NOTE: In order to support another OS, an #elif needs to be added (above the
163 // "#else // defined(_WIN32)") for that OS, and OS-specific versions of the
164 // contents of this file must be created.
Mike Stroyan4268d1f2015-07-13 14:45:35 -0600165
Dave Houlton6c72f352018-02-06 17:49:16 -0700166 // NOTE: Other OS-specific changes are also needed for this OS. Search for
167 // files with "WIN32" in it, as a quick way to find files that must be changed.
Mike Stroyan4268d1f2015-07-13 14:45:35 -0600168
Mark Lobodzinski64318ba2017-01-26 13:34:13 -0700169#endif // defined(_WIN32)
Mike Stroyan4268d1f2015-07-13 14:45:35 -0600170
Mark Lobodzinski64318ba2017-01-26 13:34:13 -0700171#endif // TEST_COMMON_H