mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-19 15:14:23 +01:00
tools/test: fix very confused code.
This broke with COPTFLAGS="-flto -O3", and so I took a look (it complains more than normal because main isn't there). We should never be running update-mocks except on programs expected to compile: in this case, that's tools/test/run-test-wire.c. Remove the code which tries to run this, which also means non-developers won't be running update-mocks! Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
committed by
Christian Decker
parent
2ac775f9f4
commit
2c3d4e46fc
@@ -33,19 +33,14 @@ TOOL_TEST_COMMON_OBJS := \
|
|||||||
TOOLS_WIRE_DEPS := $(BOLT_DEPS) tools/test/test_cases $(wildcard tools/gen/*_template)
|
TOOLS_WIRE_DEPS := $(BOLT_DEPS) tools/test/test_cases $(wildcard tools/gen/*_template)
|
||||||
|
|
||||||
$(TOOL_TEST_OBJS) $(TOOL_GEN_OBJS): $(TOOL_GEN_HEADER)
|
$(TOOL_TEST_OBJS) $(TOOL_GEN_OBJS): $(TOOL_GEN_HEADER)
|
||||||
$(TOOL_TEST_PROGRAMS): $(TOOL_TEST_COMMON_OBJS) $(TOOL_GEN_SRC:.c=.o) tools/test/enum.o
|
$(TOOL_TEST_PROGRAMS): $(TOOL_TEST_COMMON_OBJS) $(TOOL_GEN_OBJS) tools/test/enum.o
|
||||||
|
|
||||||
tools/test/test_gen.h: $(TOOLS_WIRE_DEPS) tools/test/Makefile
|
tools/test/test_gen.h: $(TOOLS_WIRE_DEPS) tools/test/Makefile
|
||||||
$(BOLT_GEN) --page header $@ test_type < tools/test/test_cases > $@
|
$(BOLT_GEN) --page header $@ test_type < tools/test/test_cases > $@
|
||||||
|
|
||||||
.INTERMEDIATE: tools/test/test_gen.c.tmp.c
|
tools/test/test_gen.c: $(TOOLS_WIRE_DEPS) tools/test/Makefile
|
||||||
# Parallel make sometimes tries to use file before update-mocks, so split.
|
|
||||||
tools/test/test_gen.c.tmp.c: $(TOOLS_WIRE_DEPS)
|
|
||||||
$(BOLT_GEN) --page impl tools/test/test_gen.h test_type < tools/test/test_cases > $@
|
$(BOLT_GEN) --page impl tools/test/test_gen.h test_type < tools/test/test_cases > $@
|
||||||
|
|
||||||
tools/test/test_gen.c: tools/test/test_gen.c.tmp.c $(EXTERNAL_HEADERS) tools/test/test_gen.h $(CCAN_HEADERS)
|
|
||||||
@MAKE=$(MAKE) tools/update-mocks.sh "$<" $(SUPPRESS_OUTPUT) && mv "$<" "$@"
|
|
||||||
|
|
||||||
tools/test/print_gen.h: wire/onion$(EXP)_wiregen.h $(TOOLS_WIRE_DEPS)
|
tools/test/print_gen.h: wire/onion$(EXP)_wiregen.h $(TOOLS_WIRE_DEPS)
|
||||||
$(BOLT_GEN) -P --page header $@ test_type < tools/test/test_cases > $@
|
$(BOLT_GEN) -P --page header $@ test_type < tools/test/test_cases > $@
|
||||||
|
|
||||||
|
|||||||
@@ -7,9 +7,42 @@
|
|||||||
|
|
||||||
|
|
||||||
/* AUTOGENERATED MOCKS START */
|
/* AUTOGENERATED MOCKS START */
|
||||||
|
/* Generated stub for fromwire_amount_msat */
|
||||||
|
struct amount_msat fromwire_amount_msat(const u8 **cursor UNNEEDED, size_t *max UNNEEDED)
|
||||||
|
{ fprintf(stderr, "fromwire_amount_msat called!\n"); abort(); }
|
||||||
|
/* Generated stub for fromwire_bool */
|
||||||
|
bool fromwire_bool(const u8 **cursor UNNEEDED, size_t *max UNNEEDED)
|
||||||
|
{ fprintf(stderr, "fromwire_bool called!\n"); abort(); }
|
||||||
/* Generated stub for fromwire_peektype */
|
/* Generated stub for fromwire_peektype */
|
||||||
int fromwire_peektype(const u8 *cursor UNNEEDED)
|
int fromwire_peektype(const u8 *cursor UNNEEDED)
|
||||||
{ fprintf(stderr, "fromwire_peektype called!\n"); abort(); }
|
{ fprintf(stderr, "fromwire_peektype called!\n"); abort(); }
|
||||||
|
/* Generated stub for fromwire_tlv */
|
||||||
|
bool fromwire_tlv(const u8 **cursor UNNEEDED, size_t *max UNNEEDED,
|
||||||
|
const struct tlv_record_type *types UNNEEDED, size_t num_types UNNEEDED,
|
||||||
|
void *record UNNEEDED, struct tlv_field **fields UNNEEDED,
|
||||||
|
const u64 *extra_types UNNEEDED, size_t *err_off UNNEEDED, u64 *err_type UNNEEDED)
|
||||||
|
{ fprintf(stderr, "fromwire_tlv called!\n"); abort(); }
|
||||||
|
/* Generated stub for fromwire_tu32 */
|
||||||
|
u32 fromwire_tu32(const u8 **cursor UNNEEDED, size_t *max UNNEEDED)
|
||||||
|
{ fprintf(stderr, "fromwire_tu32 called!\n"); abort(); }
|
||||||
|
/* Generated stub for fromwire_tu64 */
|
||||||
|
u64 fromwire_tu64(const u8 **cursor UNNEEDED, size_t *max UNNEEDED)
|
||||||
|
{ fprintf(stderr, "fromwire_tu64 called!\n"); abort(); }
|
||||||
|
/* Generated stub for fromwire_u16 */
|
||||||
|
u16 fromwire_u16(const u8 **cursor UNNEEDED, size_t *max UNNEEDED)
|
||||||
|
{ fprintf(stderr, "fromwire_u16 called!\n"); abort(); }
|
||||||
|
/* Generated stub for fromwire_u32 */
|
||||||
|
u32 fromwire_u32(const u8 **cursor UNNEEDED, size_t *max UNNEEDED)
|
||||||
|
{ fprintf(stderr, "fromwire_u32 called!\n"); abort(); }
|
||||||
|
/* Generated stub for fromwire_u64 */
|
||||||
|
u64 fromwire_u64(const u8 **cursor UNNEEDED, size_t *max UNNEEDED)
|
||||||
|
{ fprintf(stderr, "fromwire_u64 called!\n"); abort(); }
|
||||||
|
/* 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 printwire_amount_msat */
|
/* Generated stub for printwire_amount_msat */
|
||||||
bool printwire_amount_msat(const char *fieldname UNNEEDED, const u8 **cursor UNNEEDED, size_t *plen UNNEEDED)
|
bool printwire_amount_msat(const char *fieldname UNNEEDED, const u8 **cursor UNNEEDED, size_t *plen UNNEEDED)
|
||||||
{ fprintf(stderr, "printwire_amount_msat called!\n"); abort(); }
|
{ fprintf(stderr, "printwire_amount_msat called!\n"); abort(); }
|
||||||
@@ -35,6 +68,38 @@ bool printwire_u64(const char *fieldname UNNEEDED, const u8 **cursor UNNEEDED, s
|
|||||||
/* Generated stub for printwire_u8_array */
|
/* Generated stub for printwire_u8_array */
|
||||||
bool printwire_u8_array(const char *fieldname UNNEEDED, const u8 **cursor UNNEEDED, size_t *plen UNNEEDED, size_t len UNNEEDED)
|
bool printwire_u8_array(const char *fieldname UNNEEDED, const u8 **cursor UNNEEDED, size_t *plen UNNEEDED, size_t len UNNEEDED)
|
||||||
{ fprintf(stderr, "printwire_u8_array called!\n"); abort(); }
|
{ fprintf(stderr, "printwire_u8_array called!\n"); abort(); }
|
||||||
|
/* Generated stub for towire_amount_msat */
|
||||||
|
void towire_amount_msat(u8 **pptr UNNEEDED, const struct amount_msat msat UNNEEDED)
|
||||||
|
{ fprintf(stderr, "towire_amount_msat called!\n"); abort(); }
|
||||||
|
/* Generated stub for towire_bool */
|
||||||
|
void towire_bool(u8 **pptr UNNEEDED, bool v UNNEEDED)
|
||||||
|
{ fprintf(stderr, "towire_bool called!\n"); abort(); }
|
||||||
|
/* Generated stub for towire_tlv */
|
||||||
|
void towire_tlv(u8 **pptr UNNEEDED,
|
||||||
|
const struct tlv_record_type *types UNNEEDED, size_t num_types UNNEEDED,
|
||||||
|
const void *record UNNEEDED)
|
||||||
|
{ fprintf(stderr, "towire_tlv called!\n"); abort(); }
|
||||||
|
/* Generated stub for towire_tu32 */
|
||||||
|
void towire_tu32(u8 **pptr UNNEEDED, u32 v UNNEEDED)
|
||||||
|
{ fprintf(stderr, "towire_tu32 called!\n"); abort(); }
|
||||||
|
/* Generated stub for towire_tu64 */
|
||||||
|
void towire_tu64(u8 **pptr UNNEEDED, u64 v UNNEEDED)
|
||||||
|
{ fprintf(stderr, "towire_tu64 called!\n"); abort(); }
|
||||||
|
/* Generated stub for towire_u16 */
|
||||||
|
void towire_u16(u8 **pptr UNNEEDED, u16 v UNNEEDED)
|
||||||
|
{ fprintf(stderr, "towire_u16 called!\n"); abort(); }
|
||||||
|
/* Generated stub for towire_u32 */
|
||||||
|
void towire_u32(u8 **pptr UNNEEDED, u32 v UNNEEDED)
|
||||||
|
{ fprintf(stderr, "towire_u32 called!\n"); abort(); }
|
||||||
|
/* Generated stub for towire_u64 */
|
||||||
|
void towire_u64(u8 **pptr UNNEEDED, u64 v UNNEEDED)
|
||||||
|
{ fprintf(stderr, "towire_u64 called!\n"); abort(); }
|
||||||
|
/* Generated stub for towire_u8 */
|
||||||
|
void towire_u8(u8 **pptr UNNEEDED, u8 v UNNEEDED)
|
||||||
|
{ fprintf(stderr, "towire_u8 called!\n"); abort(); }
|
||||||
|
/* Generated stub for towire_u8_array */
|
||||||
|
void towire_u8_array(u8 **pptr UNNEEDED, const u8 *arr UNNEEDED, size_t num UNNEEDED)
|
||||||
|
{ fprintf(stderr, "towire_u8_array called!\n"); abort(); }
|
||||||
/* AUTOGENERATED MOCKS END */
|
/* AUTOGENERATED MOCKS END */
|
||||||
|
|
||||||
int main(void)
|
int main(void)
|
||||||
|
|||||||
Reference in New Issue
Block a user