diff options
Diffstat (limited to 'java/dexpreopt_config_test.go')
-rw-r--r-- | java/dexpreopt_config_test.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/java/dexpreopt_config_test.go b/java/dexpreopt_config_test.go index e64cb4846..b704d09d2 100644 --- a/java/dexpreopt_config_test.go +++ b/java/dexpreopt_config_test.go @@ -15,7 +15,6 @@ package java import ( - "log" "runtime" "testing" @@ -24,8 +23,7 @@ import ( func TestBootImageConfig(t *testing.T) { if runtime.GOOS != "linux" { - log.Printf("Skipping as boot image config test is only supported on linux not %s", runtime.GOOS) - return + t.Skipf("Skipping as boot image config test is only supported on linux not %s", runtime.GOOS) } result := android.GroupFixturePreparers( |