From b0c4a1c24eaca389dfb14750e0ab8a4012f86077 Mon Sep 17 00:00:00 2001 From: Patrick McCarty Date: Mon, 16 Oct 2017 18:01:09 -0700 Subject: [PATCH] Enable rename support for Travis testing Because renames are an opt-in feature (i.e. not enabled by default), pass the required configure option for Travis builds, which enables the rename tests. Signed-off-by: Patrick McCarty --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e855f0c..37ae8c4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,5 +21,5 @@ install: # Ubuntu's default umask is 0002, but this break's swupd hash calculations. script: - sudo find test/functional -exec chmod g-w {} \; - - autoreconf --verbose --warnings=none --install --force && ./configure && make -j48 && sudo sh -c 'umask 0022 && make -j48 check' + - autoreconf --verbose --warnings=none --install --force && ./configure --enable-rename-detection && make -j48 && sudo sh -c 'umask 0022 && make -j48 check' after_failure: cat test-suite.log