From f9fab1cadf152d0b5e852b67066ddf09e450df4c Mon Sep 17 00:00:00 2001 From: Jens Steube Date: Thu, 17 Jun 2021 09:43:21 +0200 Subject: [PATCH] Tests: Changed tests for VeraCrypt from -a 0 to -a 3, because password extension is not available to all shells --- docs/changes.txt | 6 ++++++ tools/test.sh | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/changes.txt b/docs/changes.txt index ce298a695..906375f8b 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -14,6 +14,12 @@ - Alias Devices: Show a warning in case the user specifically listed a device to use which in a later step is skipped because it is an alias of another active device - Backend Information: Added new column showing the PCI Address per CUDA/OpenCL device to easier identify broken cards +## +## Technical +## + +- Tests: Changed tests for VeraCrypt from -a 0 to -a 3, because password extension is not available to all shells + * changes v6.2.1 -> v6.2.2 ## diff --git a/tools/test.sh b/tools/test.sh index 9d06afed7..79b56a517 100755 --- a/tools/test.sh +++ b/tools/test.sh @@ -2783,7 +2783,7 @@ function veracrypt_test() # The hash-cipher combination might be invalid (e.g. RIPEMD-160 + Kuznyechik) [ -f "${filename}" ] || return - CMD="echo hashca{a..z} | ./${BIN} ${OPTS} -a 0 -m ${hash_type} ${filename}" + CMD="./${BIN} ${OPTS} -a 3 -m ${hash_type} ${filename} hashc?lt" echo "> Testing hash type ${hash_type} with attack mode 0, markov ${MARKOV}, single hash, Device-Type ${TYPE}, Kernel-Type ${KERNEL_TYPE}, Vector-Width ${VECTOR}, Cipher ${cipher_cascade}" >> "${OUTD}/logfull.txt" 2>> "${OUTD}/logfull.txt"