mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00

- add ult configuration to level zero core tests Change-Id: Ie291395adb607df8c558b924e32ce2cedbce3f93 Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
19 lines
341 B
C++
19 lines
341 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace NEO {
|
|
enum class TestMode { NotSpecified,
|
|
UnitTests,
|
|
AubTests,
|
|
AubTestsWithTbx,
|
|
TbxTests };
|
|
|
|
extern TestMode testMode;
|
|
} // namespace NEO
|