Browse Source

tests: Update mocks after breaking them via interleaved merges

fix-mocks
Christian Decker 4 years ago
parent
commit
2eb5c19b6c
  1. 3
      common/test/run-sphinx-xor_cipher_stream.c

3
common/test/run-sphinx-xor_cipher_stream.c

@ -74,6 +74,9 @@ u64 fromwire_u64(const u8 **cursor UNNEEDED, size_t *max UNNEEDED)
/* Generated stub for fromwire_u8 */
u8 fromwire_u8(const u8 **cursor UNNEEDED, size_t *max UNNEEDED)
{ fprintf(stderr, "fromwire_u8 called!\n"); abort(); }
/* Generated stub for fromwire_u8_array */
void fromwire_u8_array(const u8 **cursor UNNEEDED, size_t *max UNNEEDED, u8 *arr UNNEEDED, size_t num UNNEEDED)
{ fprintf(stderr, "fromwire_u8_array called!\n"); abort(); }
/* Generated stub for hmac_done */
void hmac_done(crypto_auth_hmacsha256_state *state UNNEEDED,
struct hmac *hmac UNNEEDED)

Loading…
Cancel
Save