File tree Expand file tree Collapse file tree 5 files changed +12
-6
lines changed
ffi/rust_calling_c/simple Expand file tree Collapse file tree 5 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -139,9 +139,11 @@ tasks:
139
139
# rust_doc_test is likely not fully sandboxed
140
140
- " -//fibonacci:fibonacci_doc_test"
141
141
- " -//hello_lib:hello_lib_doc_test"
142
- - " -//ffi/rust_calling_c/simple/..."
143
142
# See https://github.com/bazelbuild/bazel/issues/9987
144
143
- " -//ffi/rust_calling_c:matrix_dylib_test"
144
+ # The bindgen rules currently do not work on RBE
145
+ # see: https://github.com/bazelbuild/rules_rust/issues/919
146
+ - " -//bindgen/..."
145
147
build_targets : *rbe_examples_targets
146
148
test_targets : *rbe_examples_targets
147
149
build_flags : *aspects_flags
@@ -170,8 +172,12 @@ tasks:
170
172
- " //..."
171
173
- " -//ffi/rust_calling_c:matrix_dylib_test"
172
174
- " -//ffi/rust_calling_c:matrix_dynamically_linked"
173
- - " -//ffi/rust_calling_c/simple/..."
175
+ # The bindgen rules currently do not work on windows
176
+ # see: https://github.com/bazelbuild/rules_rust/issues/919
177
+ - " -//bindgen/..."
178
+ # The proto rules do not work on windows
174
179
- " -//proto/..."
180
+ # The wasm rules do not work on windows
175
181
- " -//wasm/..."
176
182
# rust_doc_test targets are currently broken on windows
177
183
# see: https://github.com/bazelbuild/rules_rust/issues/887
File renamed without changes.
Original file line number Diff line number Diff line change @@ -6,6 +6,6 @@ fn main() {
6
6
mod test {
7
7
#[ test]
8
8
fn do_the_test ( ) {
9
- assert_eq ! ( 43 , simple_bindgen:: SIMPLE_VALUE ) ;
9
+ assert_eq ! ( 42 , simple_bindgen:: SIMPLE_VALUE ) ;
10
10
}
11
11
}
Original file line number Diff line number Diff line change
1
+ #include <stdint.h>
2
+
3
+ const int64_t SIMPLE_VALUE = 42 ;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments