tests: add test for lib64

This commit is contained in:
Natanael Copa 2020-10-29 13:49:24 +00:00
parent 5111ca5fc8
commit 614fbc507b
2 changed files with 46 additions and 1 deletions

View File

@ -23,7 +23,18 @@ teardown() {
@test "abuild: build failure" {
cd testrepo/buildfail
run $ABUILD
run $ABUILD cleanpkg all
[ $status -ne 0 ]
}
@test "abuild: test check for /usr/lib64" {
cd testrepo/lib64test
run $ABUILD cleanpkg all
[ $status -ne 0 ]
}
@test "abuild: test options=lib64" {
cd testrepo/lib64test
options=lib64 $ABUILD
$ABUILD cleanpkg
}

View File

@ -0,0 +1,34 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
# test package
pkgname="lib64test"
pkgver="1.0"
pkgrel=0
pkgdesc="Dummy test package"
url="https://gitlab.alpinelinux.org/alpine/aports"
arch="noarch"
license="MIT"
subpackages="$pkgname-dev $pkgname-doc"
source=""
builddir="$srcdir/$pkgname-$pkgver"
prepare() {
mkdir -p "$builddir"
}
build() {
mkdir -p usr/include usr/bin usr/share/man/man1 usr/lib64
touch usr/include/$pkgname.h
touch usr/bin/$pkgname
touch usr/share/man/man1/$pkgname.1
}
check() {
true
}
package() {
mkdir -p "$pkgdir"
cp -r * "$pkgdir"/
}