diff options
author | 2022-11-21 10:29:42 +0000 | |
---|---|---|
committer | 2022-11-21 10:29:42 +0000 | |
commit | 3e9a5d9e2f669c68d6097facb310fb71cbd50e6c (patch) | |
tree | 0fa82279c12657e7ceb735d26e7cd733dfdf3882 /rust/library_test.go | |
parent | 3e0efc52f3aa67715a33bb65c765502c9ba724a6 (diff) | |
parent | b8a4c2cad14ef007f1f7268bd6429fbca7bc7960 (diff) |
Merge "rust: Test with full Rust “crate_type”"
Diffstat (limited to 'rust/library_test.go')
-rw-r--r-- | rust/library_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/library_test.go b/rust/library_test.go index 79abec548..e3e4d0f03 100644 --- a/rust/library_test.go +++ b/rust/library_test.go @@ -45,7 +45,7 @@ func TestLibraryVariants(t *testing.T) { rlibCrateType := "rlib" dylibCrateType := "dylib" sharedCrateType := "cdylib" - staticCrateType := "static" + staticCrateType := "staticlib" // Test crate type for rlib is correct. if !strings.Contains(libfooRlib.Args["rustcFlags"], "crate-type="+rlibCrateType) { |