From 0accf8a5cdd27ad8d3a04976c0897fd364f46294 Mon Sep 17 00:00:00 2001 From: Sergio Martin Date: Wed, 17 Jan 2024 18:25:55 +0100 Subject: [PATCH] adding hash file cleanup --- tests/games/run_test.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/games/run_test.sh b/tests/games/run_test.sh index 80e5d0e..58c8267 100755 --- a/tests/games/run_test.sh +++ b/tests/games/run_test.sh @@ -37,6 +37,9 @@ quickerNESHash=`cat ${quickerNESHashFile}` # Comparing hashes quickNESHash=`cat ${quickNESHashFile}` +# Removing temporary files +rm -f ${quickerNESHashFile} ${quickNESHashFile} + # Compare hashes if [ "${quickerNESHash}" = "${quickNESHash}" ]; then echo "[] Test Passed"