mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
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
|