mirror of
https://github.com/samsonjs/media.git
synced 2026-03-28 09:55:48 +00:00
Disable failing tests of FlacExtractorSeekTest
PiperOrigin-RevId: 485061783
(cherry picked from commit 6ff980d43e)
This commit is contained in:
parent
2958ebf6ac
commit
91d08c1020
1 changed files with 7 additions and 0 deletions
|
|
@ -29,6 +29,7 @@ import androidx.test.core.app.ApplicationProvider;
|
|||
import androidx.test.ext.junit.runners.AndroidJUnit4;
|
||||
import java.io.IOException;
|
||||
import java.util.List;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
|
||||
|
|
@ -75,6 +76,7 @@ public final class FlacExtractorSeekTest {
|
|||
fileName, trackOutput, targetSeekTimeUs, extractedFrameIndex);
|
||||
}
|
||||
|
||||
@Ignore("Fix [internal: b/249505968] before enabling this.")
|
||||
@Test
|
||||
public void seeking_seekTable_handlesSeekToEoF() throws IOException {
|
||||
String fileName = TEST_FILE_SEEK_TABLE;
|
||||
|
|
@ -92,6 +94,7 @@ public final class FlacExtractorSeekTest {
|
|||
fileName, trackOutput, targetSeekTimeUs, extractedFrameIndex);
|
||||
}
|
||||
|
||||
@Ignore("Fix [internal: b/249505968] before enabling this.")
|
||||
@Test
|
||||
public void seeking_seekTable_handlesSeekingBackward() throws IOException {
|
||||
String fileName = TEST_FILE_SEEK_TABLE;
|
||||
|
|
@ -111,6 +114,7 @@ public final class FlacExtractorSeekTest {
|
|||
fileName, trackOutput, targetSeekTimeUs, extractedFrameIndex);
|
||||
}
|
||||
|
||||
@Ignore("Fix [internal: b/249505968] before enabling this.")
|
||||
@Test
|
||||
public void seeking_seekTable_handlesSeekingForward() throws IOException {
|
||||
String fileName = TEST_FILE_SEEK_TABLE;
|
||||
|
|
@ -158,6 +162,7 @@ public final class FlacExtractorSeekTest {
|
|||
fileName, trackOutput, targetSeekTimeUs, extractedFrameIndex);
|
||||
}
|
||||
|
||||
@Ignore("Fix [internal: b/249505968] before enabling this.")
|
||||
@Test
|
||||
public void seeking_binarySearch_handlesSeekToEoF() throws IOException {
|
||||
String fileName = TEST_FILE_BINARY_SEARCH;
|
||||
|
|
@ -175,6 +180,7 @@ public final class FlacExtractorSeekTest {
|
|||
fileName, trackOutput, targetSeekTimeUs, extractedFrameIndex);
|
||||
}
|
||||
|
||||
@Ignore("Fix [internal: b/249505968] before enabling this.")
|
||||
@Test
|
||||
public void seeking_binarySearch_handlesSeekingBackward() throws IOException {
|
||||
String fileName = TEST_FILE_BINARY_SEARCH;
|
||||
|
|
@ -194,6 +200,7 @@ public final class FlacExtractorSeekTest {
|
|||
fileName, trackOutput, targetSeekTimeUs, extractedFrameIndex);
|
||||
}
|
||||
|
||||
@Ignore("Fix [internal: b/249505968] before enabling this.")
|
||||
@Test
|
||||
public void seeking_binarySearch_handlesSeekingForward() throws IOException {
|
||||
String fileName = TEST_FILE_BINARY_SEARCH;
|
||||
|
|
|
|||
Loading…
Reference in a new issue