mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-18 19:23:56 +00:00
Fix test
This commit is contained in:
@@ -290,7 +290,7 @@ bool test_native_exceptions()
|
||||
void print_time()
|
||||
{
|
||||
const auto epoch_time = std::chrono::system_clock::now().time_since_epoch();
|
||||
printf("Time: %lld\n", epoch_time.count());
|
||||
printf("Time: %lld\n", std::chrono::duration_cast<std::chrono::nanoseconds>(epoch_time).count());
|
||||
}
|
||||
|
||||
#define RUN_TEST(func, name) \
|
||||
|
||||
@@ -3,10 +3,7 @@
|
||||
#include "module_mapping.hpp"
|
||||
#include "windows-emulator/logger.hpp"
|
||||
|
||||
namespace
|
||||
{
|
||||
|
||||
}
|
||||
#include <serialization_helper.hpp>
|
||||
|
||||
namespace utils
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user