mirror of
https://github.com/hashcat/hashcat
synced 2025-01-10 17:16:22 +01:00
tests: fixed -P command line argument
The -P parameter was not correctly changing the OPTS command line argument to hashcat. This fix changes the way -O/-P are handled within test.sh, i.e. -O is set if -P was not specified and the OPTS argument list will be drafted accordingly. Thanks
This commit is contained in:
parent
86b773a04f
commit
29643b343f
@ -5,7 +5,7 @@
|
||||
## License.....: MIT
|
||||
##
|
||||
|
||||
OPTS="--quiet --potfile-disable --runtime 400 --hwmon-disable -O"
|
||||
OPTS="--quiet --potfile-disable --runtime 400 --hwmon-disable"
|
||||
|
||||
TDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
|
||||
@ -2668,7 +2668,6 @@ while getopts "V:t:m:a:b:hcpd:x:o:d:D:F:POI:s:" opt; do
|
||||
;;
|
||||
|
||||
"P")
|
||||
OPTS="$(echo "${OPTS}" | sed 's/ -O$//' | sed 's/^-O //' | sed 's/ -O //')"
|
||||
OPTIMIZED=0
|
||||
;;
|
||||
|
||||
@ -2685,9 +2684,13 @@ done
|
||||
|
||||
export IS_OPTIMIZED=${OPTIMIZED}
|
||||
|
||||
if [ "${OPTIMIZED}" -eq 1 ]; then
|
||||
OPTS="${OPTS} -O"
|
||||
fi
|
||||
|
||||
if [ "${TYPE}" == "null" ]; then
|
||||
OPTS="${OPTS} -D 2"
|
||||
TYPE="Gpu"
|
||||
OPTS="${OPTS} -D 2"
|
||||
TYPE="Gpu"
|
||||
fi
|
||||
|
||||
if [ -n "${ARCHITECTURE}" ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user