diff options
author | Shiz <hi@shiz.me> | 2017-05-18 03:18:47 +0200 |
---|---|---|
committer | Shiz <hi@shiz.me> | 2017-05-18 03:18:47 +0200 |
commit | 3044ea9937653d41ea57efa56b2d43a358ef7c9c (patch) | |
tree | 67a2bdee338f3f559e55be6e6d3bbf7c9d296eea /testing | |
parent | fc348670e4b595787bc672b7d8bb18d812c7f8cc (diff) | |
download | aports-3044ea9937653d41ea57efa56b2d43a358ef7c9c.tar.bz2 aports-3044ea9937653d41ea57efa56b2d43a358ef7c9c.tar.xz |
testing/libc++: fix libc++abi tests
Diffstat (limited to 'testing')
-rw-r--r-- | testing/libc++/APKBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/libc++/APKBUILD b/testing/libc++/APKBUILD index c867dd01b5..3a73d02c62 100644 --- a/testing/libc++/APKBUILD +++ b/testing/libc++/APKBUILD @@ -26,7 +26,7 @@ builddir="$srcdir" _cxxdir="$srcdir/libcxx-$pkgver.src" _abidir="$srcdir/libcxxabi-$pkgver.src" -# Tests on armhf are too slooow on armhf, disable them for now. +# Tests on armhf are too slooow, disable them for now. case "$CARCH" in armhf) options="!check";; esac @@ -56,6 +56,7 @@ build() { -DLIBCXXABI_USE_LLVM_UNWINDER=ON \ -DLIBCXXABI_LIBUNWIND_INCLUDES=/usr/include \ -DLIBCXXABI_LIBCXX_INCLUDES="$_cxxdir"/include \ + -DLIBCXXABI_LIBCXX_LIBRARY_PATH="$_cxxdir"/build/lib \ -DLIBCXXABI_INCLUDE_TESTS=1 make @@ -79,8 +80,7 @@ build() { check() { cd "$_abidir"/build - # FIXME! - make check-cxxabi || true + make check-cxxabi cd "$_cxxdir"/build # XXX: Some tests fail due to fakeroot currently, and some other due |