You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cc_passthrough test on macos gives validation error, it should pass. As a result, make test fails on macos for the current main Piecrust branch
Possible solution design or implementation
It is easy to temporarily fix the test by changing a string sent to method query_passthrough from query_value to query_va. Looks like all strings having length 8 or more, are causing the validation error, only strings up to length 7 pass. This happens only if function return value is a pair (String, Vec<u8>), if the string is returned alone, not in a pair, the problem does not occur, it also does not matter if a pair is (String, Vec<u8>) or (Vec<u8>, String).
Additional context
The problem does not occur on linux platforms.
The text was updated successfully, but these errors were encountered:
Summary
cc_passthrough test on macos gives validation error, it should pass. As a result,
make test
fails on macos for the current main Piecrust branchPossible solution design or implementation
It is easy to temporarily fix the test by changing a string sent to method
query_passthrough
fromquery_value
toquery_va
. Looks like all strings having length 8 or more, are causing the validation error, only strings up to length 7 pass. This happens only if function return value is a pair(String, Vec<u8>)
, if the string is returned alone, not in a pair, the problem does not occur, it also does not matter if a pair is(String, Vec<u8>)
or(Vec<u8>, String)
.Additional context
The problem does not occur on linux platforms.
The text was updated successfully, but these errors were encountered: