]> git.ipfire.org Git - thirdparty/chrony.git/commitdiff
test: extend compilation/001-features
authorMiroslav Lichvar <mlichvar@redhat.com>
Wed, 9 Sep 2015 11:50:32 +0000 (13:50 +0200)
committerMiroslav Lichvar <mlichvar@redhat.com>
Wed, 9 Sep 2015 15:19:07 +0000 (17:19 +0200)
test/compilation/001-features

index b1f1fb6507399c1b9cebc8aadf73f799d03dd908..3df47c7f1a42f34f99e34e3e48ae72cce5be0d9a 100755 (executable)
@@ -5,8 +5,14 @@
 cd ../..
 
 for opts in \
+       "--enable-debug" \
        "--disable-asyncdns" \
+       "--disable-ipv6" \
+       "--disable-privdrop" \
+       "--disable-readline" \
        "--disable-rtc" \
+       "--disable-scfilter" \
+       "--disable-sechash" \
        "--disable-cmdmon" \
        "--disable-ntp" \
        "--disable-refclock" \
@@ -15,5 +21,5 @@ for opts in \
        "--disable-cmdmon --disable-ntp --disable-refclock"
 do
        ./configure $opts
-       make || exit 1
+       make "$@" || exit 1
 done