26 lines
525 B
C++
26 lines
525 B
C++
/*
|
|
* Copyright (C) 2018-2024 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "test_mode.h"
|
|
|
|
namespace NEO {
|
|
#if defined(_WIN32)
|
|
#if defined(_DEBUG)
|
|
unsigned int ultIterationMaxTimeInS = 240;
|
|
#else
|
|
unsigned int ultIterationMaxTimeInS = 120;
|
|
#endif
|
|
#else
|
|
unsigned int ultIterationMaxTimeInS = 45;
|
|
#endif
|
|
unsigned int testCaseMaxTimeInMs = 16000;
|
|
bool useMockGmm = true;
|
|
const char *executionDirectorySuffix = "";
|
|
const char *executionName = "ULT";
|
|
TestMode testMode = defaultTestMode;
|
|
} // namespace NEO
|