mirror of
https://github.com/samsonjs/media.git
synced 2026-04-23 14:15:48 +00:00
Disable tests that fail on some host machines
This commit is contained in:
parent
96c8557e00
commit
180d6ae902
1 changed files with 4 additions and 0 deletions
|
|
@ -22,6 +22,8 @@ import com.google.android.exoplayer2.C;
|
|||
import com.google.android.exoplayer2.upstream.DataSource;
|
||||
import com.google.android.exoplayer2.upstream.DataSpec;
|
||||
import java.io.IOException;
|
||||
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.robolectric.RobolectricTestRunner;
|
||||
|
|
@ -30,6 +32,7 @@ import org.robolectric.RobolectricTestRunner;
|
|||
@RunWith(RobolectricTestRunner.class)
|
||||
public class Aes128DataSourceTest {
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
public void test_OpenCallsUpstreamOpen_CloseCallsUpstreamClose() throws IOException {
|
||||
UpstreamDataSource upstream = new UpstreamDataSource();
|
||||
|
|
@ -44,6 +47,7 @@ public class Aes128DataSourceTest {
|
|||
assertThat(upstream.opened).isFalse();
|
||||
}
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
public void test_OpenCallsUpstreamThrowingOpen_CloseCallsUpstreamClose() throws IOException {
|
||||
UpstreamDataSource upstream =
|
||||
|
|
|
|||
Loading…
Reference in a new issue