Skip to content

Commit 7ef624f

Browse files
committed
travis: pass enable-seccomp-debug to configure
1 parent 3262498 commit 7ef624f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ matrix:
88
include:
99
- os: linux
1010
compiler: clang
11-
env: BUILD_TYPE=default CFLAGS='-fsanitize=address -fsanitize=undefined'
11+
env: BUILD_TYPE=default CFLAGS='-fsanitize=address -fsanitize=undefined' CONFFLAGS=--enable-seccomp-debug
1212
addons:
1313
apt:
1414
packages:
1515
- libseccomp-dev
1616
- os: linux
1717
compiler: clang-5.0
18-
env: BUILD_TYPE=default CFLAGS='-fsanitize=address -fsanitize=undefined'
18+
env: BUILD_TYPE=default CFLAGS='-fsanitize=address -fsanitize=undefined' CONFFLAGS=--enable-seccomp-debug
1919
addons:
2020
apt:
2121
sources:
@@ -25,7 +25,7 @@ matrix:
2525
- libseccomp-dev
2626
- os: linux
2727
compiler: gcc
28-
env: BUILD_TYPE=default CFLAGS=-fsanitize=address
28+
env: BUILD_TYPE=default CFLAGS=-fsanitize=address CONFFLAGS=--enable-seccomp-debug
2929
addons:
3030
apt:
3131
packages:
@@ -70,7 +70,7 @@ script:
7070
case $BUILD_TYPE in
7171
default)
7272
./autogen.sh
73-
./configure || (cat config.log; exit 1)
73+
./configure ${CONFFLAGS} || (cat config.log; exit 1)
7474
make
7575
make distcheck || (find . -name test-suite.log | xargs -t cat; exit 1)
7676
;;

0 commit comments

Comments
 (0)