mirror of
https://github.com/kdave/btrfs-progs
synced 2025-04-25 20:47:58 +00:00
btrfs-progs: tests: add more configure option test coverage
Update the build test script with LZO optional build and add combination of all existing options with the experimental build (this effectively doubles the number of build runs). Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
9b5cc554fe
commit
05402d22fc
@ -37,9 +37,14 @@ $str"
|
||||
}
|
||||
|
||||
buildme() {
|
||||
buildme_common
|
||||
buildme_common --enable-experimental
|
||||
}
|
||||
|
||||
buildme_common() {
|
||||
make clean-all
|
||||
|
||||
./autogen.sh && CFLAGS="$CFLAGS" configure "$conf" || die "configure not working with: $@"
|
||||
./autogen.sh && CFLAGS="$CFLAGS" ./configure "$conf" $1 || die "configure not working with: $@"
|
||||
$make clean
|
||||
$make $opts $target
|
||||
check_result "$?"
|
||||
@ -115,10 +120,13 @@ build_make_targets
|
||||
conf='--disable-python'
|
||||
build_make_targets
|
||||
|
||||
conf='--with-convert=ext2'
|
||||
conf='--disable-zstd'
|
||||
build_make_targets
|
||||
|
||||
conf='--enable-zstd'
|
||||
conf='--disable-lzo'
|
||||
build_make_targets
|
||||
|
||||
conf='--with-convert=ext2'
|
||||
build_make_targets
|
||||
|
||||
conf='--with-crypto=libgcrypt'
|
||||
|
Loading…
Reference in New Issue
Block a user