blob: 9857d9d34812ae57af71d3193550a59bf686cd65 [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,
kWasmGMTests,
kBazelTestRunner,
};
TestHarness CurrentTestHarness();
bool CurrentTestHarnessIsSkQP();
#endif