ericmckean / webm

Automatically exported from code.google.com/p/webm
0 stars 0 forks source link

Fix failing arm 32bit tests #800

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Follow steps in libvpx/test/android/README

Some tests that have errors:
VP8/AltRefTest.MonotonicTimestamps*
VP8/ConfigTest.LagIsDisabled*
VP8/CQTest.LinearPSNRIsHigherForCQLevel*
VP8/DatarateTestLarge.BasicBufferModel/3
VP8/DatarateTestLarge.ChangingDropFrameThresh/3
VP8/ErrorResilienceTestLarge.OnVersusOff*

Some example output:
libvpx/test/android/../.././test/encode_test_driver.cc:50: Failure
Value of: res
  Actual: 8
Expected: VPX_CODEC_OK
Which is: 0
g_lag_in_frames out of range [..0]
libvpx/test/android/../.././test/altref_test.cc:62: Failure
Expected: RunLoop(&video) doesn't generate new fatal failures in the current 
thread.
  Actual: it does.
[  FAILED  ] VP8/AltRefTest.MonotonicTimestamps/0, where GetParam() = 
(0x556f5c0198, 5) (8 ms

libvpx/test/android/../.././test/encode_test_driver.cc:50: Failure
Value of: res
  Actual: 8
Expected: VPX_CODEC_OK
Which is: 0
g_pass out of range [VPX_RC_ONE_PASS..VPX_RC_ONE_PASS]
libvpx/test/android/../.././test/datarate_test.cc:147: Failure
Expected: RunLoop(&video) doesn't generate new fatal failures in the current 
thread.
  Actual: it does.
[  FAILED  ] VP8/DatarateTestLarge.BasicBufferModel/3, where GetParam() = 
(0x556f5c0368, 3) (0 ms)

Original issue reported on code.google.com by fgalli...@google.com on 5 Jun 2014 at 3:37

GoogleCodeExporter commented 9 years ago
The issue is that on android we soft enable realtime only. The failing tests 
are expecting modes other than realtime.

You can enable non-realtime by setting --disable-realtime-only.

Original comment by fgalli...@google.com on 23 Jul 2014 at 11:19