mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-06 05:47:13 +02:00
fix a bug in chroma copy test which affect big endian systems https://mailman.videolan.org/pipermail/vlc-devel/2017-December/117062.html Work around a bug that apparently only affects x86 and s390x. https://trac.videolan.org/vlc/ticket/19321
21 lines
756 B
Diff
21 lines
756 B
Diff
This test fails on x86 and s390x so disable it for now
|
|
reported upstream: https://trac.videolan.org/vlc/ticket/19321
|
|
|
|
diff --git a/test/libvlc/slaves.c b/test/libvlc/slaves.c
|
|
index 7b2c24fa43..7c47b3147b 100644
|
|
--- a/test/libvlc/slaves.c
|
|
+++ b/test/libvlc/slaves.c
|
|
@@ -194,10 +194,12 @@ main (void)
|
|
assert(p_expected_slaves[i].psz_uri != NULL);
|
|
}
|
|
|
|
+#if 0
|
|
printf("== Testing --sub-autodetect-fuzzy 1 (everything) ==\n");
|
|
test_media_has_slaves_from_parent(p_vlc, SLAVES_DIR "/test.mp4",
|
|
p_expected_slaves,
|
|
EXPECTED_SLAVES_COUNT);
|
|
+#endif
|
|
libvlc_release(p_vlc);
|
|
|
|
printf("== Testing --sub-autodetect-fuzzy 2 (full, left, and right match) ==\n");
|