46 lines
944 B
C++
46 lines
944 B
C++
// Copyright (C) 2018-2021 Intel Corporation
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
#include <ngraph/except.hpp>
|
|
|
|
#ifdef SELECTIVE_BUILD_ANALYZER
|
|
#define SELECTIVE_BUILD_ANALYZER_ON
|
|
#undef SELECTIVE_BUILD_ANALYZER
|
|
#elif defined(SELECTIVE_BUILD)
|
|
#define SELECTIVE_BUILD_ON
|
|
#undef SELECTIVE_BUILD
|
|
#endif
|
|
|
|
#define SELECTIVE_BUILD
|
|
|
|
#include "../core/src/itt.hpp"
|
|
|
|
using namespace std;
|
|
|
|
TEST(conditional_compilation, disabled_op_scope)
|
|
{
|
|
#define ngraph_op_Scope0 1
|
|
int n = 0;
|
|
const std::string errMsg = "ngraph_op_Scope1 is disabled!";
|
|
|
|
// Simple scope is enabled
|
|
NGRAPH_OP_SCOPE(Scope0);
|
|
n = 42;
|
|
EXPECT_EQ(n, 42);
|
|
|
|
// Simple scope is disabled
|
|
ASSERT_THROW(NGRAPH_OP_SCOPE(Scope1), ngraph::ngraph_error);
|
|
#undef CCTests_Scope0
|
|
}
|
|
|
|
#undef SELECTIVE_BUILD
|
|
|
|
#ifdef SELECTIVE_BUILD_ANALYZER_ON
|
|
#define SELECTIVE_BUILD_ANALYZER
|
|
#elif defined(SELECTIVE_BUILD_ON)
|
|
#define SELECTIVE_BUILD
|
|
#endif
|