mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

- aub_tests started with "--tbx" option connects to TBX server - CSR is created in dual mode: TBX + AUB to dump aub file - with this enhancement it is possible to debug aub tests live Change-Id: I0302f5f4bac4c293661a149f64888770dd49343c
19 lines
340 B
C++
19 lines
340 B
C++
/*
|
|
* Copyright (C) 2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace OCLRT {
|
|
enum class TestMode { NotSpecified,
|
|
UnitTests,
|
|
AubTests,
|
|
AubTestsWithTbx,
|
|
TbxTests };
|
|
|
|
extern TestMode testMode;
|
|
} // namespace OCLRT
|