diff options
Diffstat (limited to 'java/java_test.go')
-rw-r--r-- | java/java_test.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/java/java_test.go b/java/java_test.go index 670eefc76..2ef3f426f 100644 --- a/java/java_test.go +++ b/java/java_test.go @@ -147,7 +147,11 @@ func run(t *testing.T, ctx *android.TestContext, config android.Config) { // deprecated func testJavaError(t *testing.T, pattern string, bp string) (*android.TestContext, android.Config) { t.Helper() - return testJavaErrorWithConfig(t, pattern, testConfig(nil, bp, nil)) + result := javaFixtureFactory. + Extend(dexpreopt.PrepareForTestWithDexpreopt). + ExtendWithErrorHandler(android.FixtureExpectsAtLeastOneErrorMatchingPattern(pattern)). + RunTestWithBp(t, bp) + return result.TestContext, result.Config } // testJavaErrorWithConfig is a legacy way of running tests of java modules that expect errors. |