diff options
author | 2020-07-29 00:25:42 +0000 | |
---|---|---|
committer | 2020-07-29 00:25:42 +0000 | |
commit | 3feff6c130c5318c04dcba3f9813f534835d15c4 (patch) | |
tree | 377f7565dccbc4ea03218bed09f13d5415fa48e9 /rust/bindgen_test.go | |
parent | 3d8e506c3ada481f8d55b3d887b25e6a03e8b671 (diff) | |
parent | 45901edb9a6ba7b42136a3ead126f94f76363eb7 (diff) |
Merge changes I4efdf333,I4abaf8e7
* changes:
Ensure hermetic device rust_bindgen.
Generate deps file for rust_bindgen modules.
Diffstat (limited to 'rust/bindgen_test.go')
-rw-r--r-- | rust/bindgen_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/bindgen_test.go b/rust/bindgen_test.go index 18e188f22..2122ec12c 100644 --- a/rust/bindgen_test.go +++ b/rust/bindgen_test.go @@ -48,9 +48,9 @@ func TestRustBindgen(t *testing.T) { t.Errorf("missing clang cflags in rust_bindgen rule: cflags %#v", libbindgen.Args["cflags"]) } if !strings.Contains(libbindgen.Args["cflags"], "-Ishared_include") { - t.Errorf("missing clang cflags in rust_bindgen rule: cflags %#v", libbindgen.Args["cflags"]) + t.Errorf("missing shared_libs exported includes in rust_bindgen rule: cflags %#v", libbindgen.Args["cflags"]) } if !strings.Contains(libbindgen.Args["cflags"], "-Istatic_include") { - t.Errorf("missing clang cflags in rust_bindgen rule: cflags %#v", libbindgen.Args["cflags"]) + t.Errorf("missing static_libs exported includes in rust_bindgen rule: cflags %#v", libbindgen.Args["cflags"]) } } |