summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2017-06-28 15:29:13 +0200
committerJulian Andres Klode <jak@debian.org>2017-06-28 16:13:47 +0200
commitc81b83864b7da79250a210ea7c49b5b03a4b2b16 (patch)
tree72db5df472070e8147b2c65174a221681c984f9b
parent29a08d8ab0c4d82f26c2712c456508784040cdbb (diff)
Fix test suite and enable non-curl testing on travis, shippable
Gbp-Dch: ignore
-rw-r--r--.travis.yml1
-rw-r--r--shippable.yml2
-rwxr-xr-xtest/integration/test-apt-update-failure-propagation6
3 files changed, 8 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 74dff44b3..8aa8dceb6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,6 +4,7 @@ sudo: required
dist: trusty
env:
- TEST_SUITE=user CMAKE_FLAGS=
+ - TEST_SUITE=user CMAKE_FLAGS="-DWITH_DOC=OFF -DWITH_CURL=OFF"
- TEST_SUITE=root CMAKE_FLAGS=-DWITH_DOC=OFF
before_install:
- sudo add-apt-repository 'deb http://archive.ubuntu.com/ubuntu/ wily main universe' -y
diff --git a/shippable.yml b/shippable.yml
index ad72afc80..e144d94d5 100644
--- a/shippable.yml
+++ b/shippable.yml
@@ -9,7 +9,7 @@ build:
- apt-get install -qq build-essential
- ./prepare-release travis-ci
- mkdir build
- - ( cd build && cmake .. )
+ - ( cd build && cmake -DWITH_CURL=OFF .. )
- make -C build -j 4
- CTEST_OUTPUT_ON_FAILURE=1 make -C build test
- ./test/integration/run-tests -q
diff --git a/test/integration/test-apt-update-failure-propagation b/test/integration/test-apt-update-failure-propagation
index 1361b1b93..9ca6e481f 100755
--- a/test/integration/test-apt-update-failure-propagation
+++ b/test/integration/test-apt-update-failure-propagation
@@ -100,7 +100,13 @@ for FILE in rootdir/etc/apt/sources.list.d/*-stable-* ; do
sed -i -e "s#:${APTHTTPSPORT}/#:666/#" "$FILE"
done
testwarning aptget update -o Dir::Bin::Methods::https="${OLDMETHODS}/https"
+if grep -q WITH_CURL:BOOL=OFF $PROJECT_BINARY_DIR/CMakeCache.txt; then
+testequalor2 "W: Failed to fetch https://localhost:666/dists/stable/InRelease Failed to connect to localhost port 666: Connection refused
+W: Some index files failed to download. They have been ignored, or old ones used instead." "W: Failed to fetch https://localhost:666/dists/stable/InRelease Could not connect to localhost:666 (127.0.0.1). - connect (111: Connection refused)
+W: Some index files failed to download. They have been ignored, or old ones used instead." tail -n 2 rootdir/tmp/testwarning.output
+else
testequalor2 "W: Failed to fetch https://localhost:666/dists/stable/InRelease Failed to connect to localhost port 666: Connection refused
W: Some index files failed to download. They have been ignored, or old ones used instead." "W: Failed to fetch https://localhost:666/dists/stable/InRelease couldn't connect to host
W: Some index files failed to download. They have been ignored, or old ones used instead." tail -n 2 rootdir/tmp/testwarning.output
+fi
posttest