summaryrefslogtreecommitdiff
path: root/rust/testing.go
diff options
context:
space:
mode:
authorIvan Lozano <ivanlozano@google.com>2020-06-11 13:25:36 -0400
committerIvan Lozano <ivanlozano@google.com>2020-06-11 17:12:19 -0400
commitfc80fe7f2f08c99fd1f24dbe170116efc77f53a0 (patch)
treefadb92956db34912042ed07dd31f441e6280908d /rust/testing.go
parent52481b445ba541d03d6bed20b7a97f245772f30c (diff)
Make rust_test file output more similar to cc_test.
This changes the way the output filename is calculated for rust_test binaries to be more similar to cc_test. This also removes the option to define multiple test binaries in a single rust_test module via the TestPerSrc mutator. Now each rust_test module corresponds to a single test binary. Bug: 158500462 Test: m -j pin-utils_tests_pin_utils Test: m -j unicode-xid_device_tests_unicode_xid Change-Id: I6e0f79dcb4e49fa49d6ebb36abeef67a9eb180a0
Diffstat (limited to 'rust/testing.go')
-rw-r--r--rust/testing.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/rust/testing.go b/rust/testing.go
index f94af71ee..4e186d350 100644
--- a/rust/testing.go
+++ b/rust/testing.go
@@ -97,7 +97,6 @@ func CreateTestContext() *android.TestContext {
ctx.PreDepsMutators(func(ctx android.RegisterMutatorsContext) {
// rust mutators
ctx.BottomUp("rust_libraries", LibraryMutator).Parallel()
- ctx.BottomUp("rust_unit_tests", TestPerSrcMutator).Parallel()
ctx.BottomUp("rust_begin", BeginMutator).Parallel()
})
ctx.RegisterSingletonType("rust_project_generator", rustProjectGeneratorSingleton)