Skip to content

Commit

Permalink
Disable failing tests of FlacExtractorSeekTest
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 485061783
  • Loading branch information
rohitjoins authored and microkatz committed Nov 8, 2022
1 parent 95d81fc commit 6ff980d
Showing 1 changed file with 7 additions and 0 deletions.
Expand Up @@ -29,6 +29,7 @@
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;

Expand Down Expand Up @@ -75,6 +76,7 @@ public void seeking_seekTable_handlesSeekToZero() throws IOException {
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;
Expand All @@ -92,6 +94,7 @@ public void seeking_seekTable_handlesSeekToEoF() throws IOException {
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;
Expand All @@ -111,6 +114,7 @@ public void seeking_seekTable_handlesSeekingBackward() throws IOException {
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;
Expand Down Expand Up @@ -158,6 +162,7 @@ public void seeking_binarySearch_handlesSeekToZero() throws IOException {
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;
Expand All @@ -175,6 +180,7 @@ public void seeking_binarySearch_handlesSeekToEoF() throws IOException {
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;
Expand All @@ -194,6 +200,7 @@ public void seeking_binarySearch_handlesSeekingBackward() throws IOException {
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;
Expand Down

0 comments on commit 6ff980d

Please sign in to comment.