diff options
author | 2023-01-27 21:04:29 +0000 | |
---|---|---|
committer | 2023-01-27 21:04:29 +0000 | |
commit | 78aca807103640c1abb92d047cc052973254281b (patch) | |
tree | c0c9eee47b4e7583b843d63b1693b92b249ce82a /android/testing.go | |
parent | ec41b5c2e2ac19ecf3455549e93e78415282e84b (diff) | |
parent | 4e115cc90de936fd68ce162c847370df5fb5021c (diff) |
Merge "add androidmk cc-related variables to androidmk"
Diffstat (limited to 'android/testing.go')
-rw-r--r-- | android/testing.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/testing.go b/android/testing.go index 29af71fbc..e4202ae6b 100644 --- a/android/testing.go +++ b/android/testing.go @@ -1145,7 +1145,7 @@ func AndroidMkDataForTest(t *testing.T, ctx *TestContext, mod blueprint.Module) var p AndroidMkDataProvider var ok bool if p, ok = mod.(AndroidMkDataProvider); !ok { - t.Errorf("module does not implement AndroidMkDataProvider: " + mod.Name()) + t.Fatalf("module does not implement AndroidMkDataProvider: " + mod.Name()) } data := p.AndroidMk() data.fillInData(ctx, mod) |