mirror of
https://github.com/fluencelabs/marine-rs-sdk-test
synced 2024-12-04 15:20:18 +00:00
fix tests
This commit is contained in:
parent
af0f503ca6
commit
440c5992c1
@ -24,7 +24,7 @@ jobs:
|
||||
(cd fluence; cargo clippy -v --target wasm32-wasi)
|
||||
(cd fluence-test; cargo build)
|
||||
|
||||
cargo test -v --all-features
|
||||
TARGET=wasm32-wasi cargo test -v --all-features
|
||||
|
||||
- save_cache:
|
||||
paths:
|
||||
|
@ -134,7 +134,7 @@ fn check_parsed_functions<'a>(
|
||||
if contains_inner_ref(&arg.ty) {
|
||||
return crate::syn_error!(
|
||||
span,
|
||||
"vector types in export function should take arguments only by value"
|
||||
"vector type in export functions should take arguments only by value"
|
||||
);
|
||||
}
|
||||
}
|
||||
|
29
fluence/tests/export_functions/array_inner_refs.stderr
Normal file
29
fluence/tests/export_functions/array_inner_refs.stderr
Normal file
@ -0,0 +1,29 @@
|
||||
error: vector type in export functions should take arguments only by value
|
||||
--> $DIR/array_inner_refs.rs:13:23
|
||||
|
|
||||
13 | pub fn inner_arrays_1(_arg: Vec<&Vec<Vec<Vec<u8>>>>) -> Vec<Vec<Vec<Vec<u8>>>> {
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
error: vector type in export functions should take arguments only by value
|
||||
--> $DIR/array_inner_refs.rs:18:23
|
||||
|
|
||||
18 | pub fn inner_arrays_2(_arg: Vec<Vec<&Vec<Vec<u8>>>>) -> Vec<Vec<Vec<Vec<u8>>>> {
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
error: vector type in export functions should take arguments only by value
|
||||
--> $DIR/array_inner_refs.rs:23:23
|
||||
|
|
||||
23 | pub fn inner_arrays_3(_arg: Vec<Vec<Vec<&Vec<u8>>>>) -> Vec<Vec<Vec<Vec<u8>>>> {
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
error: vector type in export functions should take arguments only by value
|
||||
--> $DIR/array_inner_refs.rs:28:23
|
||||
|
|
||||
28 | pub fn inner_arrays_4(_arg: Vec<Vec<Vec<Vec<&u8>>>>) -> Vec<Vec<Vec<Vec<u8>>>> {
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
error: vector type in export functions should take arguments only by value
|
||||
--> $DIR/array_inner_refs.rs:33:35
|
||||
|
|
||||
33 | pub fn inner_arrays_5(_arg1: i32, _arg2: Vec<Vec<Vec<&Vec<u8>>>>, _arg3: i32) -> Vec<Vec<Vec<Vec<u8>>>> {
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
Loading…
Reference in New Issue
Block a user