From f5ff2b4a9465e48b18a7503f2af980e697720fba Mon Sep 17 00:00:00 2001 From: Dhinak G <17605561+dhinakg@users.noreply.github.com> Date: Sat, 22 Jun 2024 10:53:44 -0400 Subject: [PATCH] Fix filename --- test_extract.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_extract.sh b/test_extract.sh index 8920cb4..fd1ff31 100755 --- a/test_extract.sh +++ b/test_extract.sh @@ -9,8 +9,8 @@ for i in tests/*; do i=$(basename "$i") echo "Testing $i" mkdir -p "tmp/$i/a" "tmp/$i/b" - ./aastuff "tests/$i/encrypted.aar" "tmp/$i/a" "$(cat tests/"$i"/key.txt)" - ./aastuff_standalone "tests/$i/encrypted.aar" "tmp/$i/b" "$(cat tests/"$i"/key.txt)" + ./aastuff "tests/$i/encrypted.aea" "tmp/$i/a" "$(cat tests/"$i"/key.txt)" + ./aastuff_standalone "tests/$i/encrypted.aea" "tmp/$i/b" "$(cat tests/"$i"/key.txt)" diff -r "tmp/$i/a" "tmp/$i/b" && echo "Test $i passed" || echo "Test $i failed" done