shadPS4/tests/stubs/scm_rev_stub.cpp
georgemoralis 31b2d9ccd7
Introducing testing suite using google test (#4170)
* initial tests for testing Setting<T>

* argg

* keep switch off

* added ci

* fix ci

* merging tests to build.yml

* fixing linux ttests/?

* one more try for ci

* more linux fix for ci

* more ci fixes

* try to fix ctests now

* should fix now

* trying fixing linux tests

* some more tests

* more tests (68 tests) and clang format
2026-03-26 00:31:53 +02:00

23 lines
655 B
C++

// SPDX-FileCopyrightText: Copyright 2026 shadPS4 Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#include <string>
#include "common/scm_rev.h"
namespace Common {
constexpr char g_version[] = "0.0.0 TEST";
constexpr bool g_is_release = false;
constexpr char g_scm_rev[] = "test_rev_hash";
constexpr char g_scm_branch[] = "test_branch";
constexpr char g_scm_desc[] = "test_desc";
constexpr char g_scm_remote_name[] = "origin";
constexpr char g_scm_remote_url[] = "https://github.com/test/shadPS4";
constexpr char g_scm_date[] = "2026-03-23";
const std::string GetRemoteNameFromLink() {
return "test";
}
} // namespace Common