18 lines
338 B
C++
18 lines
338 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/helpers/debug_helpers.h"
|
|
#include "runtime/os_interface/debug_settings_manager.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
using namespace OCLRT;
|
|
|
|
TEST(debugBreak, whenDebugBreakCalledInTestThenNothingIsThrown) {
|
|
DEBUG_BREAK_IF(!false);
|
|
}
|