summaryrefslogtreecommitdiff
path: root/rust/binary.go
diff options
context:
space:
mode:
author Chih-Hung Hsieh <chh@google.com> 2019-12-12 19:36:05 -0800
committer Chih-Hung Hsieh <chh@google.com> 2019-12-13 14:51:32 -0800
commit9a4a7bab411cb6aaf01e5236eac6328e7d8f8f2e (patch)
tree144fe7c00b7d6b34ef3af3099bb950ff754a395b /rust/binary.go
parentedb4e21de5619651be2ca83d4db90817f8515bfb (diff)
Install rust tests under nativetest(64)
* Now the installation directories match those for C/C++ tests: * The relative_install_path refers to path under nativetest(64). * Device test files are installed in data/nativetest(64). * Automatically generated configuration files and copied test binaries are still in the "testcases" directory. * Change host test configuration to run test binary files in testcases/<mutated_module_name>/<arch_type>/<stem_name> Bug: 140938178 Test: atest --include-subdirs under external/rust/crates Change-Id: I4b29afb897f4ba8749e87f79857c5b1a959bb2b0
Diffstat (limited to 'rust/binary.go')
-rw-r--r--rust/binary.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/binary.go b/rust/binary.go
index d4b661491..fda056e43 100644
--- a/rust/binary.go
+++ b/rust/binary.go
@@ -57,7 +57,7 @@ func NewRustBinary(hod android.HostOrDeviceSupported) (*Module, *binaryDecorator
module := newModule(hod, android.MultilibFirst)
binary := &binaryDecorator{
- baseCompiler: NewBaseCompiler("bin", ""),
+ baseCompiler: NewBaseCompiler("bin", "", InstallInSystem),
}
module.compiler = binary