summaryrefslogtreecommitdiffhomepage
path: root/dev/lib/tests
diff options
context:
space:
mode:
Diffstat (limited to 'dev/lib/tests')
-rw-r--r--dev/lib/tests/gtest.hpp2
-rw-r--r--dev/lib/tests/hpptest.hpp4
2 files changed, 4 insertions, 2 deletions
diff --git a/dev/lib/tests/gtest.hpp b/dev/lib/tests/gtest.hpp
index 31ae5d7..b2e53c9 100644
--- a/dev/lib/tests/gtest.hpp
+++ b/dev/lib/tests/gtest.hpp
@@ -5,4 +5,6 @@
* Copyright 2025, Amlal El Mahrouss, licensed under the MIT license.
*/
+#pragma once
+
#include <gtest/gtest.h>
diff --git a/dev/lib/tests/hpptest.hpp b/dev/lib/tests/hpptest.hpp
index 5f78179..e32ac85 100644
--- a/dev/lib/tests/hpptest.hpp
+++ b/dev/lib/tests/hpptest.hpp
@@ -7,7 +7,6 @@
#pragma once
-#ifdef OCL_HPPTEST
namespace ocl::hpptest
{
typedef bool condition_type;
@@ -15,7 +14,8 @@ namespace ocl::hpptest
template <condition_type expr = true>
consteval inline void must_pass()
{
+#ifdef OCL_HPPTEST
OCL_HPPTEST_ASSERT(expr);
+#endif
}
} // namespace ocl::hpptest
-#endif