Skip to content

Commit

Permalink
Updated Test Cases
Browse files Browse the repository at this point in the history
  • Loading branch information
Hitesh Sondhi committed Apr 19, 2016
1 parent 62ca722 commit e6d5717
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public void testGetCpuArch() throws Exception {
if (Build.CPU_ABI.equals(CpuArchHelper.getx86CpuAbi()) || Build.CPU_ABI.equals(CpuArchHelper.getx86_64CpuAbi())) {
assertEquals(cpuArch, CpuArch.x86);
} else if (Build.CPU_ABI.equals(CpuArchHelper.getArmeabiv7CpuAbi())) {
assertThat(cpuArch == CpuArch.ARMv7 || cpuArch == CpuArch.ARMv7_NEON).isTrue();
assertEquals(cpuArch, CpuArch.ARMv7);
} else if (Build.CPU_ABI.equals(CpuArchHelper.getArm64CpuAbi())) {
assertEquals(cpuArch, CpuArch.ARMv7);
}else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ public class CpuArchTest extends CommonInstrumentationTestCase {

public void testFFmpegAssetsWithSha1Sum() {
testFFmpegAsset(CpuArch.ARMv7, "armeabi-v7a/ffmpeg");
testFFmpegAsset(CpuArch.ARMv7_NEON, "armeabi-v7a-neon/ffmpeg");
testFFmpegAsset(CpuArch.x86, "x86/ffmpeg");
}

Expand Down

0 comments on commit e6d5717

Please sign in to comment.