Browse Source

Add new make target `tvs`

To simplify generating the necessary testvectors when adding a new
algorithm.

Signed-off-by: Steffen Jaeckel <[email protected]>
Steffen Jaeckel 1 year ago
parent
commit
5ad1681ccb
1 changed files with 5 additions and 0 deletions
  1. 5 0
      makefile_include.mk

+ 5 - 0
makefile_include.mk

@@ -446,6 +446,11 @@ bins: $(call print-help,bins,Builds the library and all useful demos) $(USEFUL_D
 check: test
 	./test
 
+tvs: sizes constants tv_gen
+	./tv_gen
+	./.ci/coverage_more.sh
+	mv *_tv.txt notes/
+
 #build the doxy files (requires Doxygen, tetex and patience)
 doxygen: $(call print-help,doxygen,Builds the doxygen html documentation)
 	$(MAKE) -C doc/ $@ V=$(V)