kokkos-execution 0.0.1
Loading...
Searching...
No Matches
category.hpp
Go to the documentation of this file.
1#ifndef KOKKOS_EXECUTION_TESTS_UTILS_CATEGORY_HPP
2#define KOKKOS_EXECUTION_TESTS_UTILS_CATEGORY_HPP
3
4// NOLINTBEGIN(cppcoreguidelines-macro-usage)
5#define TEST_CATEGORY_IMPL(_name_, _suffix_) GTEST_CONCAT_TOKEN_(GTEST_CONCAT_TOKEN_(_name_, _), _suffix_)
6
7#if !defined(__DOXYGEN__)
8# define TEST_CATEGORY(_name_) TEST_CATEGORY_IMPL(_name_, TEST_EXECUTION_SPACE_FOR_CATEGORY)
9#else
10# define TEST_CATEGORY(_name_) _name_
11#endif
12// NOLINTEND(cppcoreguidelines-macro-usage)
13
14#endif // KOKKOS_EXECUTION_TESTS_UTILS_CATEGORY_HPP