17 lines
231 B
C++
17 lines
231 B
C++
#include <gtest/gtest.h>
|
|
|
|
namespace Test {
|
|
|
|
class host_barrier : public ::testing::Test {
|
|
protected:
|
|
static void SetUpTestCase() {}
|
|
static void TearDownTestCase() {}
|
|
};
|
|
|
|
TEST_F( host_barrier, openmp )
|
|
{
|
|
|
|
}
|
|
|
|
} // namespace Test
|