blob: 1d63e3e99303aa0e60baa3e88f9e18b4caefa42b [file]
/*
* Copyright 2022 Google LLC
*
* 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,
kWasmGMTests,
kBazelUnitTestRunner,
};
TestHarness CurrentTestHarness();
bool CurrentTestHarnessIsSkQP();
#endif