Skip to content

Commit 10c6dd2

Browse files
committed
Exclude tests with suspected false negatives.
Print compiler version.
1 parent 9beaa96 commit 10c6dd2

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.gitlab-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,6 @@ thread-sanitizer:
7878
- cd tests
7979
- export CXX=g++
8080
- export CXXFLAGS="$CXXFLAGS -g"
81+
- export EXCLUDE_TESTS="CriticalLock CriticalName CriticalNameHint ParallelNested PreaccumulationLocal SectionsNowait"
8182
- export OMP_NUM_THREADS=$(expr $(nproc --all) / 2)
8283
- make all

tests/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,8 @@ all:
118118
prepareGenerate:
119119
@ mkdir -p build; \
120120
rm -r -f tempmakefile; \
121-
printf "# auto generated by OpDiLib\n" >> tempmakefile;
121+
printf "# auto generated by OpDiLib\n" >> tempmakefile; \
122+
$(CXX) --version;
122123

123124
# process each driver with its associated tests
124125
$(DRIVERS):

0 commit comments

Comments
 (0)