Skip to content

Commit a0ea406

Browse files
committed
Update exclude list for new compile-fails
1 parent c0d876f commit a0ea406

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

.github/workflows/codecov.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ jobs:
4949
git submodule update --init libs/predef
5050
git submodule update --init libs/static_assert
5151
git submodule update --init libs/test
52+
git submodule update --init libs/random
5253
./bootstrap.sh
5354
./b2 headers
5455
- name: gcc-gcov-native

test/cover/make_gcov_02_files.gmk

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,19 @@
88

99
FILES_PRJ := $(basename $(wildcard $(PATH_SRC)/*.cpp))
1010

11-
FILES_EXCLUDE := $(PATH_SRC)/concepts_test.cpp \
12-
$(PATH_SRC)/link_1.cpp \
13-
$(PATH_SRC)/link_2.cpp \
14-
$(PATH_SRC)/link_3.cpp \
15-
$(PATH_SRC)/test_bad_evaluation_method.cpp \
16-
$(PATH_SRC)/test_explicit_floats.cpp \
17-
$(PATH_SRC)/test_from_chars.cpp
11+
FILES_EXCLUDE := $(PATH_SRC)/concepts_test.cpp \
12+
$(PATH_SRC)/link_1.cpp \
13+
$(PATH_SRC)/link_2.cpp \
14+
$(PATH_SRC)/link_3.cpp \
15+
$(PATH_SRC)/test_bad_evaluation_method.cpp \
16+
$(PATH_SRC)/test_explicit_floats.cpp \
17+
$(PATH_SRC)/test_from_chars.cpp \
18+
$(PATH_SRC)/test_illegal_decimal32_fast_implicit_conversions.cpp \
19+
$(PATH_SRC)/test_illegal_decimal32_implicit_conversions.cpp \
20+
$(PATH_SRC)/test_illegal_decimal64_fast_implicit_conversions.cpp \
21+
$(PATH_SRC)/test_illegal_decimal64_implicit_conversions.cpp \
22+
$(PATH_SRC)/test_illegal_decimal128_implicit_conversions.cpp \
23+
1824

1925
FILES_EXCLUDE := $(basename $(FILES_EXCLUDE))
2026

0 commit comments

Comments
 (0)