2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2019-02-27 11:39:32 +01:00
|
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
2019-02-27 11:39:32 +01:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2019-12-13 16:48:57 +01:00
|
|
|
#include "core/debug_settings/debug_settings_manager.h"
|
2019-09-05 09:35:56 +02:00
|
|
|
#include "core/helpers/debug_helpers.h"
|
2019-02-27 11:39:32 +01:00
|
|
|
|
2017-12-21 00:45:38 +01:00
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
using namespace NEO;
|
2018-03-09 17:25:40 +01:00
|
|
|
|
|
|
|
|
TEST(debugBreak, whenDebugBreakCalledInTestThenNothingIsThrown) {
|
2017-12-21 00:45:38 +01:00
|
|
|
DEBUG_BREAK_IF(!false);
|
|
|
|
|
}
|