diff options
author | Colin Walters <walters@verbum.org> | 2017-07-19 09:21:23 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2017-07-20 14:01:11 +0000 |
commit | cf6c15a6c5bf75bc160c77d3bd302c9c02563455 (patch) | |
tree | 1dc3fdccc6915eb1fb4b991cd5e22911cba102bd /ci/build-check.sh | |
parent | f9f7d55e7954ebde075c1afd18256d3c017feacd (diff) | |
download | ostree-cf6c15a6c5bf75bc160c77d3bd302c9c02563455.tar.gz |
ci/papr: Add a suite to run introspection-based tests without ASAN
Unfortunately we can't do gobject-introspection based tests
while compiling with `-fsanitize=address`, since it needs to hook
`malloc` early on.
Add a new suite which just runs the introspection-based tests without ASAN.
Closes: #1016
Approved by: jlebon
Diffstat (limited to 'ci/build-check.sh')
-rwxr-xr-x | ci/build-check.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/build-check.sh b/ci/build-check.sh index 677515b3..0e12000f 100755 --- a/ci/build-check.sh +++ b/ci/build-check.sh @@ -11,7 +11,7 @@ make syntax-check # TODO: do syntax-check under check # And now run the installed tests make install if test -x /usr/bin/gnome-desktop-testing-runner; then - gnome-desktop-testing-runner -p 0 libostree/ + gnome-desktop-testing-runner -p 0 ${INSTALLED_TESTS_PATTERN:-libostree/} fi if test -x /usr/bin/clang; then |