2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2019-02-27 18:39:32 +08:00
|
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2019-02-27 18:39:32 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "runtime/helpers/debug_helpers.h"
|
2018-03-10 00:25:40 +08:00
|
|
|
#include "runtime/os_interface/debug_settings_manager.h"
|
2019-02-27 18:39:32 +08:00
|
|
|
|
2017-12-21 07:45:38 +08:00
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
2018-03-10 00:25:40 +08:00
|
|
|
using namespace OCLRT;
|
|
|
|
|
|
|
|
TEST(debugBreak, whenDebugBreakCalledInTestThenNothingIsThrown) {
|
2017-12-21 07:45:38 +08:00
|
|
|
DEBUG_BREAK_IF(!false);
|
|
|
|
}
|