Skip to content
Snippets Groups Projects
Unverified Commit 72199bbb authored by Marcin Ślusarz's avatar Marcin Ślusarz Committed by GitHub
Browse files

Merge pull request #3938 from marcinslusarz/unwind-detection

common: detect libunwind on Travis
parents 239ab601 4368b503
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env bash #!/usr/bin/env bash
# #
# Copyright 2016-2018, Intel Corporation # Copyright 2016-2019, Intel Corporation
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions # modification, are permitted provided that the following conditions
...@@ -47,8 +47,8 @@ export RPMEM_DISABLE_LIBIBVERBS=y ...@@ -47,8 +47,8 @@ export RPMEM_DISABLE_LIBIBVERBS=y
cd $WORKDIR cd $WORKDIR
make check-license make check-license
make cstyle make cstyle
make -j2 USE_LIBUNWIND=1 make -j2
make -j2 test USE_LIBUNWIND=1 make -j2 test
make -j2 pcheck TEST_BUILD=$TEST_BUILD make -j2 pcheck TEST_BUILD=$TEST_BUILD
make DESTDIR=/tmp source make DESTDIR=/tmp source
......
#!/usr/bin/env bash #!/usr/bin/env bash
# #
# Copyright 2017, Intel Corporation # Copyright 2017-2019, Intel Corporation
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions # modification, are permitted provided that the following conditions
...@@ -51,8 +51,8 @@ export UT_VALGRIND_SKIP_PRINT_MISMATCHED=1 ...@@ -51,8 +51,8 @@ export UT_VALGRIND_SKIP_PRINT_MISMATCHED=1
# Build all and run tests # Build all and run tests
cd $WORKDIR cd $WORKDIR
make -j2 USE_LIBUNWIND=1 COVERAGE=1 make -j2 COVERAGE=1
make -j2 test USE_LIBUNWIND=1 COVERAGE=1 make -j2 test COVERAGE=1
# XXX: unfortunately valgrind raports issues in coverage instrumentation # XXX: unfortunately valgrind raports issues in coverage instrumentation
# which we have to ignore (-k flag), also there is dependency between # which we have to ignore (-k flag), also there is dependency between
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment