2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2019-03-26 18:59:46 +08:00
|
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include "unit_tests/aub_tests/command_stream/aub_command_stream_fixture.h"
|
|
|
|
#include "unit_tests/aub_tests/fixtures/simple_arg_fixture.h"
|
|
|
|
#include "unit_tests/fixtures/hello_world_fixture.h"
|
|
|
|
#include "unit_tests/fixtures/simple_arg_fixture.h"
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2017-12-21 07:45:38 +08:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Factory where all command stream traffic funnels to an AUB file
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
struct AUBHelloWorldFixtureFactory : public HelloWorldFixtureFactory {
|
|
|
|
typedef AUBCommandStreamFixture CommandStreamFixture;
|
|
|
|
};
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|