aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDan Liew <delcypher@gmail.com>2016-09-02 07:58:49 +0100
committerGitHub <noreply@github.com>2016-09-02 07:58:49 +0100
commit5bf634f6db66c819ed84476807bcee020e5f21aa (patch)
tree28889036cce6e1833a783feaf11f86ecc41614be
parent207c8315ffc0a525a3fc51894c7a09293bce4ea7 (diff)
parent91ff7dabaf8ce850b51071ebe48cb75b448d53fd (diff)
downloadklee-5bf634f6db66c819ed84476807bcee020e5f21aa.tar.gz
Merge pull request #463 from delcypher/fix_gtest_build
Try to unbreak the TravisCI and Docker builds.
-rwxr-xr-x.travis/testing-utils.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis/testing-utils.sh b/.travis/testing-utils.sh
index 27bd420d..b2f608db 100755
--- a/.travis/testing-utils.sh
+++ b/.travis/testing-utils.sh
@@ -4,9 +4,9 @@ set -e
if [ "${LLVM_VERSION}" != "2.9" ]; then
# Using LLVM3.4 all we need is vanilla GoogleTest :)
- wget https://googletest.googlecode.com/files/gtest-1.7.0.zip
- unzip gtest-1.7.0.zip
- cd gtest-1.7.0/
+ wget https://github.com/google/googletest/archive/release-1.7.0.zip
+ unzip release-1.7.0.zip
+ cd googletest-release-1.7.0/
cmake .
make
# Normally I wouldn't do something like this but hey we're running on a temporary virtual machine, so who cares?