Skip to content

Commit

Permalink
check single test for failure
Browse files Browse the repository at this point in the history
  • Loading branch information
tishma committed Jan 3, 2017
1 parent 95b9ae9 commit 342d3d2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/com/testfairy/gradle/GradleSupportMatrixTest.php
Expand Up @@ -120,7 +120,8 @@ private function getAndroidHome() {

private function assertZipaligned($filename) {
$home = $this->getAndroidHome();
exec("${home}/build-tools/19.1.0/zipalign -c 4 '$filename'", $output, $retval);
exec("${home}/build-tools/19.1.0/zipalign -c -v 4 '$filename'", $output, $retval);
print_r($output);
$this->assertEquals(0, $retval, "APK file was not zipaligned");
}

Expand Down

0 comments on commit 342d3d2

Please sign in to comment.