From f1089d7daae1b2daef7cd33ca216c929c457f9d2 Mon Sep 17 00:00:00 2001
From: Tobias Leibner <tobias.leibner@googlemail.com>
Date: Wed, 7 Nov 2018 12:35:51 +0100
Subject: [PATCH] ignore gcov errors

---
 .gitsuper           | 22 +++++++++++-----------
 .travis.script.bash |  4 ++--
 2 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/.gitsuper b/.gitsuper
index b9f3d4211..14d5c5e28 100644
--- a/.gitsuper
+++ b/.gitsuper
@@ -13,13 +13,13 @@ status = 1a3bcab04b011a5d6e44f9983cae6ff89fa695e8 bin (heads/master)
 	 741e4f8e53bdd3e1b6e19d84eb22b6e3dc48526c dune-python (remotes/origin/releases/2.5)
 	 26cc8cb4161a3a51002ab2a81b8c81d2c951ee79 dune-testtools (remotes/origin/p/renemilk/testname_listing_hack_no-skiptest)
 	 8fe883e99c58c9f0c2f92457d546a0ac9f5a9bf9 dune-uggrid (v2.5.2-1-g8fe883e9)
-	 f3fb573585a5239db7c790a5fd2da2ba765d916f dune-xt-common (heads/master)
-	 3e3f3bf06e21cbbf3c0a559891b44c6f5d987d0f dune-xt-data (heads/master)
-	 bc11cdc02b0930f28cf9009e38fc8f552830a654 dune-xt-functions (heads/master)
-	 7960307789e83d8da00efdad48ccdbc7d4201e6b dune-xt-grid (heads/master)
-	 f6904b69f9a3ee5d45ee824d3b244e59cfed7ff4 dune-xt-la (heads/master)
+	+f446f2380b0f1bb9de2c5c3dc66bca9f12c2b9d6 dune-xt-common (heads/dailywork_tleibner)
+	+4b2963ea87844c40ab55d45c89ff2f75e0f75025 dune-xt-data (heads/dailywork_tleibner)
+	+a41cbe763a4102293873f2d93ccea5b845e56c98 dune-xt-functions (heads/new-master)
+	+8fedbef74590f64f409eb57e2c945d13bb4732e8 dune-xt-grid (heads/dailywork_tleibner)
+	+d3ab2989fa11a3707686f0f0b5472a4c850dbd3a dune-xt-la (heads/match-dune-gdt-refactor)
 	 09d0378f616b94d68bcdd9fc6114813181849ec0 scripts (heads/master)
-commit = 2f293876f0e9058196c1df69190ed0de52e225c6
+commit = 2fc14026f7e772a0e6c908789d5cfb20671d62df
 
 [submodule.bin]
 remote = git@github.com:dune-community/local-bin.git
@@ -89,27 +89,27 @@ commit = 8fe883e99c58c9f0c2f92457d546a0ac9f5a9bf9
 [submodule.dune-xt-common]
 remote = git@github.com:dune-community/dune-xt-common.git
 status = 2424627f0ad5de7e4aaa5e7f48bc2a02414d95a1 .vcsetup (heads/master)
-commit = f3fb573585a5239db7c790a5fd2da2ba765d916f
+commit = f446f2380b0f1bb9de2c5c3dc66bca9f12c2b9d6
 
 [submodule.dune-xt-data]
 remote = https://github.com/dune-community/dune-xt-data
 status = 2424627f0ad5de7e4aaa5e7f48bc2a02414d95a1 .vcsetup (heads/master)
-commit = 3e3f3bf06e21cbbf3c0a559891b44c6f5d987d0f
+commit = 4b2963ea87844c40ab55d45c89ff2f75e0f75025
 
 [submodule.dune-xt-functions]
 remote = git@github.com:dune-community/dune-xt-functions.git
 status = 2424627f0ad5de7e4aaa5e7f48bc2a02414d95a1 .vcsetup (heads/master)
-commit = bc11cdc02b0930f28cf9009e38fc8f552830a654
+commit = a41cbe763a4102293873f2d93ccea5b845e56c98
 
 [submodule.dune-xt-grid]
 remote = git@github.com:dune-community/dune-xt-grid.git
 status = 2424627f0ad5de7e4aaa5e7f48bc2a02414d95a1 .vcsetup (heads/master)
-commit = 7960307789e83d8da00efdad48ccdbc7d4201e6b
+commit = 8fedbef74590f64f409eb57e2c945d13bb4732e8
 
 [submodule.dune-xt-la]
 remote = git@github.com:dune-community/dune-xt-la.git
 status = 2424627f0ad5de7e4aaa5e7f48bc2a02414d95a1 .vcsetup (heads/master)
-commit = f6904b69f9a3ee5d45ee824d3b244e59cfed7ff4
+commit = d3ab2989fa11a3707686f0f0b5472a4c850dbd3a
 
 [submodule.scripts]
 remote = https://github.com/wwu-numerik/scripts.git
diff --git a/.travis.script.bash b/.travis.script.bash
index ac74449eb..2d6331f3f 100755
--- a/.travis.script.bash
+++ b/.travis.script.bash
@@ -35,11 +35,11 @@ fi
 
 pushd ${DUNE_BUILD_DIR}/${MY_MODULE}
 COVERAGE_INFO=${PWD}/coverage.info
-lcov --directory . --output-file ${COVERAGE_INFO} -c
+lcov --directory . --output-file ${COVERAGE_INFO} --ignore-errors gcov -c
 for d in "dune-common" "dune-pybindxi" "dune-geometry"  "dune-istl"  "dune-grid" "dune-alugrid"  "dune-uggrid"  "dune-localfunctions" ; do
     lcov --directory . --output-file ${COVERAGE_INFO} -r ${COVERAGE_INFO} "${SUPERDIR}/${d}/*"
 done
-lcov --directory . --output-file ${COVERAGE_INFO} --ignore-errors gcov -r ${COVERAGE_INFO} "${SUPERDIR}/${MY_MODULE}/dune/xt/*/test/*"
+lcov --directory . --output-file ${COVERAGE_INFO} -r ${COVERAGE_INFO} "${SUPERDIR}/${MY_MODULE}/dune/xt/*/test/*"
 cd ${SUPERDIR}/${MY_MODULE}
 ${OLDPWD}/dune-env pip install codecov
 ${OLDPWD}/dune-env codecov -v -X gcov -X coveragepy -F ctest -f ${COVERAGE_INFO} -t ${CODECOV_TOKEN}
-- 
GitLab