2021-06-29 22:20:34 +00:00
|
|
|
/*
|
2022-12-29 12:27:52 +00:00
|
|
|
* Copyright (C) 2021-2022 Intel Corporation
|
2021-06-29 22:20:34 +00:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
2021-06-25 13:55:08 +00:00
|
|
|
#include "igfxfmid.h"
|
2021-06-29 22:20:34 +00:00
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
namespace TestExcludes {
|
|
|
|
|
|
2021-06-25 13:55:08 +00:00
|
|
|
bool isTestExcluded(const char *testName, const PRODUCT_FAMILY productFamily, const GFXCORE_FAMILY gfxFamily);
|
|
|
|
|
void addTestExclude(const char *testName, const PRODUCT_FAMILY family);
|
|
|
|
|
void addTestExclude(const char *testName, const GFXCORE_FAMILY family);
|
2021-06-29 22:20:34 +00:00
|
|
|
} // namespace TestExcludes
|
|
|
|
|
} // namespace NEO
|