From 829836c33351e8c36b6644147aaea24ee26f838c Mon Sep 17 00:00:00 2001 From: momo5502 Date: Tue, 21 Oct 2025 20:41:53 +0200 Subject: [PATCH] Enable serialization tests --- src/windows-emulator-test/serialization_test.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/windows-emulator-test/serialization_test.cpp b/src/windows-emulator-test/serialization_test.cpp index 766ebe22..1aadaabc 100644 --- a/src/windows-emulator-test/serialization_test.cpp +++ b/src/windows-emulator-test/serialization_test.cpp @@ -53,8 +53,7 @@ namespace test ASSERT_EQ(serializer1.get_buffer(), serializer2.get_buffer()); } -#if 0 // currently broken - TEST(SerializationTest, EmulationIsReproducible) + TEST(SerializationTest, EmulationIsReproducible) { auto emu1 = create_sample_emulator(); emu1.start(); @@ -102,6 +101,4 @@ namespace test ASSERT_EQ(serializer1.get_buffer(), serializer2.get_buffer()); } -#endif // 0 - }