decaf-emu/tests/cpu/runner-generated/main.cpp

37 lines
938 B
C++

#include "hardwaretests.h"
#include <common/decaf_assert.h>
#include <common/log.h>
#include <libcpu/cpu.h>
#include <libcpu/cpu_config.h>
#include <libcpu/mem.h>
#include <memory>
#include <spdlog/spdlog.h>
#include <spdlog/sinks/stdout_sinks.h>
static int runResult;
int main(int argc, char *argv[])
{
auto logger = std::make_shared<spdlog::logger>("logger", std::make_shared<spdlog::sinks::stdout_sink_st>());
logger->set_level(spdlog::level::debug);
gLog = logger;
auto cpuConfig = cpu::Settings { };
cpuConfig.jit.enabled = true;
cpu::setConfig(cpuConfig);
cpu::initialise();
// We need to run the tests on a core.
cpu::setCoreEntrypointHandler(
[](cpu::Core *core) {
if (cpu::this_core::id() == 1) {
// Run the tests on only a single core.
runResult = hwtest::runTests("data/wiiu");
}
});
cpu::start();
cpu::join();
return runResult;
}