Skip to content

Commit 7d198e3

Browse files
committed
Recover "uaes"
1 parent 56731b3 commit 7d198e3

File tree

3 files changed

+3599
-4
lines changed

3 files changed

+3599
-4
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -254,10 +254,10 @@ check: $(BIN) build-artifact
254254
fi; \
255255
)
256256

257-
EXPECTED_aes_sha1 = f9924635666d3d58d5b60c0bde8b986a2a99effb -
257+
EXPECTED_aes_sha1 = 1242a6757c8aef23e50b5264f5941a2f4b4a347e -
258258
misalign: $(BIN) build-artifact
259-
$(Q)$(PRINTF) "Running aes ... ";
260-
$(Q)if [ "$(shell $(BIN) -m $(OUT)/riscv32/aes | $(SHA1SUM))" = "$(EXPECTED_aes_sha1)" ]; then \
259+
$(Q)$(PRINTF) "Running uaes ... ";
260+
$(Q)if [ "$(shell $(BIN) -m $(OUT)/riscv32/uaes | $(SHA1SUM))" = "$(EXPECTED_aes_sha1)" ]; then \
261261
$(call notice, [OK]); \
262262
else \
263263
$(PRINTF) "Failed.\n"; \

mk/artifact.mk

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ TESTBENCHES += \
3131
rvsim \
3232
$(smolnes) \
3333
spirograph \
34-
$(ticks)
34+
$(ticks) \
35+
uaes
3536

3637
ifeq ($(USE_PREBUILT),1)
3738
LATEST_RELEASE := $(shell wget -q https://api.github.com/repos/sysprog21/rv32emu-prebuilt/releases/latest -O- | grep -Po '(?<="tag_name": ").+(?=",)')

0 commit comments

Comments
 (0)