2022-03-09 22:18:18 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2022 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TestHarness_DEFINED
|
|
|
|
#define TestHarness_DEFINED
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Identifies the currently-running test harness.
|
|
|
|
*/
|
|
|
|
enum class TestHarness {
|
|
|
|
kDM,
|
|
|
|
kFM,
|
|
|
|
kListGpuUnitTests,
|
|
|
|
kSkQP,
|
2022-03-10 20:20:02 +00:00
|
|
|
kWasmGMTests,
|
2022-03-09 22:18:18 +00:00
|
|
|
};
|
|
|
|
TestHarness CurrentTestHarness();
|
|
|
|
bool CurrentTestHarnessIsSkQP();
|
|
|
|
|
|
|
|
#endif
|