llvm/llvm/unittests/Frontend/OpenMPContextTest.cpp

//===- unittest/IR/OpenMPContextTest.cpp - OpenMP Context handling tests --===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "llvm/Frontend/OpenMP/OMPConstants.h"
#include "llvm/Frontend/OpenMP/OMPContext.h"
#include "llvm/TargetParser/Triple.h"
#include "gtest/gtest.h"

usingnamespacellvm;
usingnamespaceomp;

namespace {

class OpenMPContextTest : public testing::Test {};

TEST_F(OpenMPContextTest, RoundTripAndAssociation) {}

TEST_F(OpenMPContextTest, ValidNesting) {}

TEST_F(OpenMPContextTest, ApplicabilityNonConstruct) {}

TEST_F(OpenMPContextTest, ApplicabilityAllTraits) {}

TEST_F(OpenMPContextTest, ScoringSimple) {}

} // namespace