blob: 326addddf0869b272003b089c33e72c51c20408f [file] [log] [blame]
/*
* 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,
};
TestHarness CurrentTestHarness();
bool CurrentTestHarnessIsSkQP();
#endif