diff options
Diffstat (limited to 'sh/sh_binary_test.go')
-rw-r--r-- | sh/sh_binary_test.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sh/sh_binary_test.go b/sh/sh_binary_test.go index 0aa607b6f..e9086be73 100644 --- a/sh/sh_binary_test.go +++ b/sh/sh_binary_test.go @@ -61,6 +61,7 @@ func testShBinary(t *testing.T, bp string) (*android.TestContext, android.Config } func TestShTestSubDir(t *testing.T) { + t.Parallel() ctx, config := testShBinary(t, ` sh_test { name: "foo", @@ -81,6 +82,7 @@ func TestShTestSubDir(t *testing.T) { } func TestShTest(t *testing.T) { + t.Parallel() ctx, config := testShBinary(t, ` sh_test { name: "foo", @@ -111,6 +113,7 @@ func TestShTest(t *testing.T) { } func TestShTest_dataModules(t *testing.T) { + t.Parallel() ctx, config := testShBinary(t, ` sh_test { name: "foo", @@ -170,6 +173,7 @@ func TestShTest_dataModules(t *testing.T) { } func TestShTestHost(t *testing.T) { + t.Parallel() ctx, _ := testShBinary(t, ` sh_test_host { name: "foo", @@ -190,6 +194,7 @@ func TestShTestHost(t *testing.T) { } func TestShTestHost_dataDeviceModules(t *testing.T) { + t.Parallel() ctx, config := testShBinary(t, ` sh_test_host { name: "foo", |