Skip to content

Commit 396d0a9

Browse files
author
Chandra Pratap
committed
fuzz-tests: order FUZZ_COMMON_OBJS lexicographic
The FUZZ_COMMON_OBJS list roughly follows lexicographic order. Make it adhere strictly to the order. This makes adding and reviewing changes to the file easier.
1 parent 44972b2 commit 396d0a9

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

tests/fuzz/Makefile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,24 @@ FUZZ_TARGETS_OBJS := $(FUZZ_TARGETS_SRC:.c=.o)
1313
FUZZ_TARGETS_BIN := $(FUZZ_TARGETS_SRC:.c=)
1414

1515
FUZZ_COMMON_OBJS := \
16-
common/amount.o \
1716
common/addr.o \
17+
common/amount.o \
1818
common/autodata.o \
1919
common/base32.o \
2020
common/base64.o \
2121
common/bech32.o \
2222
common/bech32_util.o \
23-
common/bip32.o \
2423
common/bigsize.o \
24+
common/bip32.o \
2525
common/blockheight_states.o \
2626
common/bolt11.o \
2727
common/bolt12_merkle.o \
2828
common/channel_config.o \
29+
common/channel_id.o \
30+
common/channel_type.o \
2931
common/close_tx.o \
3032
common/configdir.o \
3133
common/configvar.o \
32-
common/channel_id.o \
33-
common/channel_type.o \
3434
common/cryptomsg.o \
3535
common/daemon.o \
3636
common/daemon_conn.o \
@@ -41,29 +41,29 @@ FUZZ_COMMON_OBJS := \
4141
common/hash_u5.o \
4242
common/hsm_encryption.o \
4343
common/htlc_state.o \
44-
common/permute_tx.o \
4544
common/initial_channel.o \
4645
common/initial_commit_tx.o \
4746
common/key_derive.o \
4847
common/keyset.o \
49-
common/msg_queue.o \
5048
common/memleak.o \
49+
common/msg_queue.o \
5150
common/node_id.o \
51+
common/permute_tx.o \
5252
common/psbt_keypath.o \
53-
common/wireaddr.o \
5453
common/sciddir_or_pubkey.o \
5554
common/setup.o \
5655
common/status.o \
5756
common/status_wire.o \
5857
common/status_wiregen.o \
5958
common/utils.o \
6059
common/version.o \
60+
common/wireaddr.o \
6161
wire/bolt12_wiregen.o \
62+
wire/channel_type_wiregen.o \
6263
wire/fromwire.o \
6364
wire/onion_wiregen.o \
6465
wire/peer_wire.o \
6566
wire/peer_wiregen.o \
66-
wire/channel_type_wiregen.o \
6767
wire/tlvstream.o \
6868
wire/towire.o \
6969
wire/wire_io.o \

0 commit comments

Comments
 (0)