From f0c2602a3e7828cd6256161af1e9bf79323b6f74 Mon Sep 17 00:00:00 2001 From: Dorian Zedler Date: Wed, 20 Jul 2022 23:28:37 +0200 Subject: [PATCH] Chore: final tests and urandom --- Implementierung/Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Implementierung/Makefile b/Implementierung/Makefile index ef0d6bd..3917228 100644 --- a/Implementierung/Makefile +++ b/Implementierung/Makefile @@ -9,8 +9,7 @@ ifeq ($(DETAILED_BENCHMARK), true) CFLAGS += -DMD2_DETAILED_BENCHMARK endif LDFLAGS = -pthread -#TESTFILES = t/1 t/2 t/5 t/7 t/10 t/25 t/50 t/75 t/100 t/250 t/500 t/750 t/1000 t/1500 t/2000 t/2500 t/3000 t/3500 t/4000 t/4500 t/5000 t/5500 -TESTFILES = t/6000 t/6500 t/7000 t/7500 t/8000 t/8500 t/9000 t/9500 t/10000 +TESTFILES = t/1 t/2 t/5 t/7 t/10 t/25 t/50 t/75 t/100 t/250 t/500 t/750 t/1000 t/1500 t/2000 t/2500 t/3000 t/3500 t/4000 t/4500 t/5000 t/5500 t/6000 t/6500 t/7000 t/7500 t/8000 t/8500 t/9000 t/9500 t/10000 TESTFILES_SIZES = ${subst t/,,${TESTFILES}} BLUE=\033[1;36m RED=\033[1;31m @@ -45,7 +44,7 @@ t/%: @mkdir -p t @echo @echo -e "${BLUE}=== Generating ${subst t/,,$@}MB of random data... ===${NC}" - dd if=/dev/random of=$@ bs=1M count=${subst t/,,$@} status=progress + dd if=/dev/urandom of=$@ bs=1M count=${subst t/,,$@} status=progress @echo -e "${BLUE}=== done ===${NC}" @echo