Skip to content

Commit

Permalink
Fix bug with fast mode in testing
Browse files Browse the repository at this point in the history
  • Loading branch information
dhinakg committed Sep 20, 2024
1 parent 2bea104 commit cbb3b17
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test_get_key.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e
set -o pipefail

# Use aa list instead of full decryption
FAST=1
FAST_ENABLED=1
FAILED=0

fail() {
Expand Down Expand Up @@ -35,6 +35,8 @@ for i in tests/*; do

if [ -e "$TEST_DIR/fast_unsupported" ]; then
FAST=0
else
FAST=$FAST_ENABLED
fi

mkdir -p "$TMP_DIR"
Expand Down

0 comments on commit cbb3b17

Please sign in to comment.