Skip to content

Commit

Permalink
ref-jasmin: test: shake256_array: Makefile with less tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tfaoliveira committed Nov 15, 2023
1 parent c361e74 commit e3bf733
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions ref-jasmin/test/fips202/shake256_array/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,14 @@ JPP ?= ../../scripts/jpp
PREPROCESSOR ?= ../../scripts/preprocessor

# ------------------------------------------------------------------------------
# 5m
OUTLEN_LIST ?= 1 31 32 33 63 64 65 95 96 97 127 128 129 135 136 137 159 160\
161 191 192 193 223 224 225 255 256 257 270 271 272

OUTLEN_LIST := $(shell seq 1 2048)
INLEN_LIST := $(shell seq 1 2048)
INLEN_LIST ?= 1 31 32 33 63 64 65 95 96 97 127 128 129 135 136 137 159 160\
161 191 192 193 223 224 225 255 256 257 270 271 272

TLIST := $(foreach O,$(OUTLEN_LIST), $(foreach I,$(INLEN_LIST), $(O)_$(I)))
TLIST := $(foreach O,$(OUTLEN_LIST), $(foreach I,$(OUTLEN_LIST), $(O)_$(I)))

# ------------------------------------------------------------------------------
TESTS := $(addprefix bin/test_fips202_, $(TLIST))
Expand Down

0 comments on commit e3bf733

Please sign in to comment.