mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-19 03:33:56 +00:00
Fix formatting
This commit is contained in:
@@ -15,7 +15,7 @@ namespace test
|
||||
{
|
||||
constexpr auto count = 200000;
|
||||
|
||||
windows_emulator emu{ "./test-sample.exe" };
|
||||
windows_emulator emu{"./test-sample.exe"};
|
||||
emu.logger.disable_output(true);
|
||||
emu.start({}, count);
|
||||
|
||||
@@ -24,7 +24,7 @@ namespace test
|
||||
|
||||
TEST(EmulationTest, CountedEmulationIsAccurate)
|
||||
{
|
||||
windows_emulator emu{ "./test-sample.exe" };
|
||||
windows_emulator emu{"./test-sample.exe"};
|
||||
emu.logger.disable_output(true);
|
||||
emu.start();
|
||||
|
||||
@@ -32,7 +32,7 @@ namespace test
|
||||
|
||||
const auto executedInstructions = emu.process().executed_instructions;
|
||||
|
||||
windows_emulator new_emu{ "./test-sample.exe" };
|
||||
windows_emulator new_emu{"./test-sample.exe"};
|
||||
new_emu.logger.disable_output(true);
|
||||
|
||||
constexpr auto offset = 1;
|
||||
|
||||
Reference in New Issue
Block a user