diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/pytest.ini | 2 | ||||
-rwxr-xr-x | test/travis-build.sh | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/test/pytest.ini b/test/pytest.ini index 9516154..036a9f4 100644 --- a/test/pytest.ini +++ b/test/pytest.ini @@ -1,2 +1,4 @@ [pytest] addopts = --verbose --assert=rewrite --tb=native -x -r a +markers = + uses_fuse: Indicates that FUSE is supported. diff --git a/test/travis-build.sh b/test/travis-build.sh index 6e2afd5..3685909 100755 --- a/test/travis-build.sh +++ b/test/travis-build.sh @@ -36,7 +36,7 @@ for CC in gcc gcc-7 gcc-10 clang; do build_opts='' fi if [ ${CC} == 'gcc-10' ]; then - build_opts='-Dc_args="-flto=auto -ffat-lto-objects"' + build_opts='-Dc_args=-flto=auto' else build_opts='' fi |