diff options
author | Michael Butler <butlermichael@google.com> | 2020-06-11 20:53:40 +0000 |
---|---|---|
committer | Michael Butler <butlermichael@google.com> | 2020-06-11 21:17:30 +0000 |
commit | 0c55445b72e80afcc2f028e1c676284935f7784e (patch) | |
tree | 3b3baf0b6a1b051a57e1e1dc113e4c709056eab1 /sh/sh_binary_test.go | |
parent | 2d4f1a2f7e96e760216e39f36503fee2a8a97d95 (diff) |
Revert "Add module name to sh_test install path."
This reverts commit 2d4f1a2f7e96e760216e39f36503fee2a8a97d95.
Reason for revert: Droidcop: Potential culprit for Bug 158778263 - verifying through Forrest before revert submission. This is part of the standard investigation process, and does not mean your CL will be reverted.
Bug: 158778263
Change-Id: I5287b3c9331b08925dd22b32c84e4c3b6f71b58a
Diffstat (limited to 'sh/sh_binary_test.go')
-rw-r--r-- | sh/sh_binary_test.go | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/sh/sh_binary_test.go b/sh/sh_binary_test.go index 6ab22c5bf..6c0d96abe 100644 --- a/sh/sh_binary_test.go +++ b/sh/sh_binary_test.go @@ -55,7 +55,7 @@ func testShBinary(t *testing.T, bp string) (*android.TestContext, android.Config return ctx, config } -func TestShTest(t *testing.T) { +func TestShTestTestData(t *testing.T) { ctx, config := testShBinary(t, ` sh_test { name: "foo", @@ -71,17 +71,10 @@ func TestShTest(t *testing.T) { mod := ctx.ModuleForTests("foo", "android_arm64_armv8-a").Module().(*ShTest) entries := android.AndroidMkEntriesForTest(t, config, "", mod)[0] - - expectedPath := "/tmp/target/product/test_device/data/nativetest64/foo" - actualPath := entries.EntryMap["LOCAL_MODULE_PATH"][0] - if expectedPath != actualPath { - t.Errorf("Unexpected LOCAL_MODULE_PATH expected: %q, actual: %q", expectedPath, actualPath) - } - - expectedData := []string{":testdata/data1", ":testdata/sub/data2"} - actualData := entries.EntryMap["LOCAL_TEST_DATA"] - if !reflect.DeepEqual(expectedData, actualData) { - t.Errorf("Unexpected test data expected: %q, actual: %q", expectedData, actualData) + expected := []string{":testdata/data1", ":testdata/sub/data2"} + actual := entries.EntryMap["LOCAL_TEST_DATA"] + if !reflect.DeepEqual(expected, actual) { + t.Errorf("Unexpected test data expected: %q, actual: %q", expected, actual) } } |