mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-22 07:37:38 +01:00
travis: run unittests for x86_64
some tests are failing with clang currently.
This commit is contained in:
parent
aee8bbe795
commit
982e934951
2 changed files with 7 additions and 4 deletions
|
@ -1,5 +1,6 @@
|
||||||
|
sudo: required
|
||||||
language: c
|
language: c
|
||||||
compiler: clang
|
compiler: gcc
|
||||||
env:
|
env:
|
||||||
- TARGET=x86_64-linux-gnu
|
- TARGET=x86_64-linux-gnu
|
||||||
- TARGET=x86-linux-gnu
|
- TARGET=x86-linux-gnu
|
||||||
|
@ -11,5 +12,7 @@ env:
|
||||||
script:
|
script:
|
||||||
- ./autogen.sh
|
- ./autogen.sh
|
||||||
- ./configure --target=$TARGET --host=$HOST
|
- ./configure --target=$TARGET --host=$HOST
|
||||||
- make
|
- make -j32
|
||||||
#- if [ $TARGET == 'x86_64-linux-gnu' ]; then make check; fi
|
- sudo bash -c 'echo core.%p.%p > /proc/sys/kernel/core_pattern'
|
||||||
|
- ulimit -c unlimited
|
||||||
|
- if [ $TARGET == 'x86_64-linux-gnu' ]; then make check -j32; fi
|
||||||
|
|
|
@ -177,7 +177,7 @@ test_static_link_LDADD = $(LIBUNWIND)
|
||||||
test_strerror_LDADD = $(LIBUNWIND)
|
test_strerror_LDADD = $(LIBUNWIND)
|
||||||
Lrs_race_LDADD = $(LIBUNWIND_local) -lpthread
|
Lrs_race_LDADD = $(LIBUNWIND_local) -lpthread
|
||||||
Ltest_varargs_LDADD = $(LIBUNWIND_local)
|
Ltest_varargs_LDADD = $(LIBUNWIND_local)
|
||||||
Ltest_init_local_signal_LDADD = $(LIBUNWIND)
|
Ltest_init_local_signal_LDADD = $(LIBUNWIND) $(LIBUNWIND_local)
|
||||||
|
|
||||||
Gtest_bt_LDADD = $(LIBUNWIND) $(LIBUNWIND_local)
|
Gtest_bt_LDADD = $(LIBUNWIND) $(LIBUNWIND_local)
|
||||||
Gtest_concurrent_LDADD = $(LIBUNWIND) $(LIBUNWIND_local) -lpthread
|
Gtest_concurrent_LDADD = $(LIBUNWIND) $(LIBUNWIND_local) -lpthread
|
||||||
|
|
Loading…
Reference in a new issue