Browse Source

Additional indication and cleanup

Piotr Czajkowski 3 years ago
parent
commit
14613aff53
1 changed files with 2 additions and 2 deletions
  1. 2 2
      makefile

+ 2 - 2
makefile

@@ -12,7 +12,7 @@ test: anonymize
 	@./anonymize testFiles/input.docx testFiles/output.docx
 	@cmp testFiles/input.docx testFiles/output.docx -s ; if [ $$? -eq 0 ] ; then echo "FAILURE: Files should differ after anonymizing!"; exit 1; fi
 	@./anonymize testFiles/output.docx -d
-	@cmp testFiles/input.docx testFiles/output.docx -s ; if [ $$? -eq 0 ] ; then echo "OK"; else echo "FAILURE: Files should be the same after de-anonymizing!"; fi
-	@rm testFiles/output.docx
+	@cmp testFiles/input.docx testFiles/output.docx -s ; if [ $$? -eq 0 ] ; then echo "OK"; else echo "FAILURE: Files should be the same after de-anonymizing!"; exit 1; fi
+	@rm testFiles/output.docx testFiles/input.docx.bin testFiles/output.docx.bin
 
 default: anonymize