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

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

diff --git a/.gitsuper b/.gitsuper
index bb5c00276..1de31f58a 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)
-	+f446f2380b0f1bb9de2c5c3dc66bca9f12c2b9d6 dune-xt-common (heads/dailywork_tleibner)
-	+88a52ae63022b572137f78bad56243edcf91257e dune-xt-data (heads/master)
-	+a41cbe763a4102293873f2d93ccea5b845e56c98 dune-xt-functions (heads/new-master)
+	+d0feadd46cc8cd4e390caf213bb9abdaeee01b63 dune-xt-common (heads/dailywork_tleibner)
+	+4b2963ea87844c40ab55d45c89ff2f75e0f75025 dune-xt-data (heads/dailywork_tleibner)
+	+c492edb79a38ac55ad18edb643d5c7956221be57 dune-xt-functions (heads/new-master)
 	+8fedbef74590f64f409eb57e2c945d13bb4732e8 dune-xt-grid (heads/dailywork_tleibner)
-	+887d0ba65a58969bb8ffcf338fa94e1327cf8266 dune-xt-la (heads/match-dune-gdt-refactor)
+	+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,17 +89,17 @@ commit = 8fe883e99c58c9f0c2f92457d546a0ac9f5a9bf9
 [submodule.dune-xt-common]
 remote = git@github.com:dune-community/dune-xt-common.git
 status = 2424627f0ad5de7e4aaa5e7f48bc2a02414d95a1 .vcsetup (heads/master)
-commit = f446f2380b0f1bb9de2c5c3dc66bca9f12c2b9d6
+commit = d0feadd46cc8cd4e390caf213bb9abdaeee01b63
 
 [submodule.dune-xt-data]
 remote = https://github.com/dune-community/dune-xt-data
 status = 2424627f0ad5de7e4aaa5e7f48bc2a02414d95a1 .vcsetup (heads/master)
-commit = 88a52ae63022b572137f78bad56243edcf91257e
+commit = 4b2963ea87844c40ab55d45c89ff2f75e0f75025
 
 [submodule.dune-xt-functions]
 remote = git@github.com:dune-community/dune-xt-functions.git
 status = 2424627f0ad5de7e4aaa5e7f48bc2a02414d95a1 .vcsetup (heads/master)
-commit = a41cbe763a4102293873f2d93ccea5b845e56c98
+commit = c492edb79a38ac55ad18edb643d5c7956221be57
 
 [submodule.dune-xt-grid]
 remote = git@github.com:dune-community/dune-xt-grid.git
@@ -109,7 +109,7 @@ commit = 8fedbef74590f64f409eb57e2c945d13bb4732e8
 [submodule.dune-xt-la]
 remote = git@github.com:dune-community/dune-xt-la.git
 status = 2424627f0ad5de7e4aaa5e7f48bc2a02414d95a1 .vcsetup (heads/master)
-commit = 887d0ba65a58969bb8ffcf338fa94e1327cf8266
+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