2018-08-27 18:11:07 +08:00
|
|
|
/*
|
2020-02-23 05:21:06 +08:00
|
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
2018-08-27 18:11:07 +08:00
|
|
|
*
|
2018-09-19 07:45:45 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-08-27 18:11:07 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2018-09-19 07:45:45 +08:00
|
|
|
enum class TestMode { NotSpecified,
|
|
|
|
UnitTests,
|
|
|
|
AubTests,
|
|
|
|
AubTestsWithTbx,
|
|
|
|
TbxTests };
|
|
|
|
|
|
|
|
extern TestMode testMode;
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|