From e26b9eb2518ef17c82c6ce3e075050a5cbd94115 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sat, 6 Feb 2016 20:27:06 -0500 Subject: [PATCH] Added test for removal of shared data directory --- cryptest.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/cryptest.sh b/cryptest.sh index 72150b15..c8011f48 100755 --- a/cryptest.sh +++ b/cryptest.sh @@ -1791,6 +1791,15 @@ if [ "$IS_CYGWIN" -eq "0" ] && [ "$IS_MINGW" -eq "0" ]; then if [ -d "$INSTALL_DIR/include/cryptopp" ]; then echo "ERROR: failed to remove cryptopp include directory" | tee -a "$INSTALL_RESULTS" fi + if [ -d "$INSTALL_DIR/share/cryptopp" ]; then + echo "ERROR: failed to remove cryptopp share directory" | tee -a "$INSTALL_RESULTS" + fi + if [ -d "$INSTALL_DIR/share/cryptopp/TestData" ]; then + echo "ERROR: failed to remove cryptopp test data directory" | tee -a "$INSTALL_RESULTS" + fi + if [ -d "$INSTALL_DIR/share/cryptopp/TestVector" ]; then + echo "ERROR: failed to remove cryptopp test vector directory" | tee -a "$INSTALL_RESULTS" + fi if [ -e "$INSTALL_DIR/bin/cryptest.exe" ]; then echo "ERROR: failed to remove cryptest.exe program" | tee -a "$INSTALL_RESULTS" fi