2018-02-23 01:42:19 +08:00
|
|
|
/*
|
2018-09-18 15:11:08 +08:00
|
|
|
* Copyright (C) 2018 Intel Corporation
|
2018-02-23 01:42:19 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-02-23 01:42:19 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include "unit_tests/aub_tests/aub_tests_configuration.h"
|
|
|
|
|
|
|
|
template <typename GfxFamily>
|
|
|
|
AubTestsConfig GetAubTestsConfig() {
|
|
|
|
AubTestsConfig aubTestsConfig;
|
|
|
|
aubTestsConfig.testCanonicalAddress = true;
|
|
|
|
return aubTestsConfig;
|
|
|
|
}
|