From a319791b702fc8873420383c174dfc8bea256a13 Mon Sep 17 00:00:00 2001 From: Jonathan Hui Date: Thu, 10 Nov 2016 04:39:29 +0800 Subject: [PATCH] Enable fuzz testing. (#945) --- tests/unit/test_fuzz.cpp | 2 +- tests/unit/test_windows.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/test_fuzz.cpp b/tests/unit/test_fuzz.cpp index 589e5d4f4..169045759 100644 --- a/tests/unit/test_fuzz.cpp +++ b/tests/unit/test_fuzz.cpp @@ -198,7 +198,7 @@ void TestFuzz(uint32_t aSeconds) #ifdef ENABLE_TEST_MAIN int main(void) { - TestFuzz(0); // For the time being, don't actually fuzz, just validate we can start and clean up + TestFuzz(30); printf("All tests passed\n"); return 0; } diff --git a/tests/unit/test_windows.cpp b/tests/unit/test_windows.cpp index 2e0c2826a..0c8a85571 100644 --- a/tests/unit/test_windows.cpp +++ b/tests/unit/test_windows.cpp @@ -157,6 +157,6 @@ namespace Thread TEST_METHOD(test_packed_enum) { ::test_packed_enum(); } // test_settings.cpp - TEST_METHOD(RunTestFuzz) { ::TestFuzz(0); } + TEST_METHOD(RunTestFuzz) { ::TestFuzz(30); } }; }