From 55071c49c1dfdbc0b85a1c604bcd2298f92fa61d Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 26 Apr 2018 21:35:01 -0400 Subject: [PATCH] Fix failed Android tests on Travis This change should have been made at https://github.com/weidai11/cryptopp/commit/e2bc3b55caab --- TestScripts/cryptest-android.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TestScripts/cryptest-android.sh b/TestScripts/cryptest-android.sh index 1bf35e44..627b7994 100755 --- a/TestScripts/cryptest-android.sh +++ b/TestScripts/cryptest-android.sh @@ -28,7 +28,7 @@ do echo "Testing for Android support of $platform using $runtime" # Test if we can set the environment for the platform - ./setenv-android.sh "$platform" "$runtime" + ./setenv-android-gcc.sh "$platform" "$runtime" if [ "$?" -eq "0" ]; then echo @@ -37,7 +37,7 @@ do # run in subshell to not keep any env vars ( - . ./setenv-android.sh "$platform" "$runtime" > /dev/null 2>&1 + . ./setenv-android-gcc.sh "$platform" "$runtime" > /dev/null 2>&1 make -f GNUmakefile-cross static dynamic cryptest.exe if [ "$?" -eq "0" ]; then echo "$platform:$runtime ==> SUCCESS" >> /tmp/build.log