summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xTestScripts/cryptest-autotools.sh5
-rwxr-xr-xTestScripts/cryptest-cmake.sh3
-rwxr-xr-xTestScripts/cryptest-pem.sh13
3 files changed, 12 insertions, 9 deletions
diff --git a/TestScripts/cryptest-autotools.sh b/TestScripts/cryptest-autotools.sh
index a2130765..0a8ed99b 100755
--- a/TestScripts/cryptest-autotools.sh
+++ b/TestScripts/cryptest-autotools.sh
@@ -150,11 +150,12 @@ fi
#############################################################################
-"$MAKE" clean 2>/dev/null
-
+echo ""
echo "Building test artifacts"
echo ""
+"$MAKE" clean &>/dev/null
+
if ! "$MAKE" -j2 -f Makefile; then
echo "make failed."
exit 1
diff --git a/TestScripts/cryptest-cmake.sh b/TestScripts/cryptest-cmake.sh
index 5e507b75..143590e6 100755
--- a/TestScripts/cryptest-cmake.sh
+++ b/TestScripts/cryptest-cmake.sh
@@ -52,6 +52,7 @@ cd "$PWD_DIR/cmake_build"
#############################################################################
+echo ""
echo "Building test artifacts"
echo ""
@@ -68,7 +69,7 @@ else
fi
fi
-"$MAKE" clean 2>/dev/null
+"$MAKE" clean &>/dev/null
if ! "$MAKE" -j2 -f Makefile VERBOSE=1; then
echo "make failed"
diff --git a/TestScripts/cryptest-pem.sh b/TestScripts/cryptest-pem.sh
index 597196d1..208b7f15 100755
--- a/TestScripts/cryptest-pem.sh
+++ b/TestScripts/cryptest-pem.sh
@@ -43,14 +43,14 @@ if [[ -z $(command -v "$MAKE") ]]; then
echo "Cannot find $MAKE. Things may fail."
fi
-if [[ -z $(command -v cmake) ]]; then
- echo "Cannot find cmake. Things may fail."
-fi
-
if [[ -z $(command -v curl) ]]; then
echo "Cannot find cURL. Things may fail."
fi
+if [[ -z $(command -v openssl) ]]; then
+ echo "Cannot find openssl. Things may fail."
+fi
+
#############################################################################
files=(pem_create.sh pem_verify.sh pem_test.cxx
@@ -75,11 +75,12 @@ fi
#############################################################################
-"$MAKE" clean 2>/dev/null
-
+echo ""
echo "Building test artifacts"
echo ""
+"$MAKE" clean &>/dev/null
+
if ! "$MAKE" -j 2; then
echo "make failed."
exit 1