From: James Zern Date: Wed, 10 Jun 2015 19:44:07 +0000 (-0700) Subject: test_intra_pred_speed: add ClearSystemState() call X-Git-Tag: v1.5.0~576^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1898d1336dd852053afa14780bc537f077999773;p=libvpx test_intra_pred_speed: add ClearSystemState() call fixes instability; noticed on mingw Change-Id: Idef4349339444ec84916e5fcd908ee9633d28aaa --- diff --git a/test/test_intra_pred_speed.cc b/test/test_intra_pred_speed.cc index cd562dae3..f5ae4407b 100644 --- a/test/test_intra_pred_speed.cc +++ b/test/test_intra_pred_speed.cc @@ -16,6 +16,7 @@ #include "./vp9_rtcd.h" #include "test/acm_random.h" +#include "test/clear_system_state.h" #include "test/md5_helper.h" #include "vpx/vpx_integer.h" #include "vpx_ports/mem.h" @@ -66,6 +67,7 @@ void TestIntraPred(const char name[], VpxPredFunc const *pred_funcs, for (int num_tests = 0; num_tests < kNumTests; ++num_tests) { pred_funcs[k](src, kBPS, above, left); } + libvpx_test::ClearSystemState(); vpx_usec_timer_mark(&timer); const int elapsed_time = static_cast(vpx_usec_timer_elapsed(&timer) / 1000);