# HG changeset patch # User Mychaela Falconia # Date 1742346013 0 # Node ID 016ecc7284abd81bcacb4256878a8c4a98d8771c # Parent fe0551c9b8cd316cc188265932b0a0b8eb327f52 tfo-ut: generate hex-encoded unit tests diff -r fe0551c9b8cd -r 016ecc7284ab .hgignore --- a/.hgignore Wed Mar 19 00:43:32 2025 +0000 +++ b/.hgignore Wed Mar 19 01:00:13 2025 +0000 @@ -15,6 +15,8 @@ ^tfo/find-is-hdr$ ^tfo/tfo-trace-msg$ +^tfo-ut/.*\.hex$ + ^trau-decode/dump-1bit$ ^trau-decode/tfo-parse-fr16$ ^trau-decode/trau-extr$ diff -r fe0551c9b8cd -r 016ecc7284ab tfo-ut/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tfo-ut/Makefile Wed Mar 19 01:00:13 2025 +0000 @@ -0,0 +1,11 @@ +OUTPUTS=tfo-efr.hex tfo-fr.hex tfo-hr.hex + +all: ${OUTPUTS} + +.SUFFIXES: .bin .hex + +.bin.hex: + ../utils/gen-hex-lines $< $@ 40 + +clean: + rm -f *.hex