We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9beaa96 commit 10c6dd2Copy full SHA for 10c6dd2
2 files changed
.gitlab-ci.yml
@@ -78,5 +78,6 @@ thread-sanitizer:
78
- cd tests
79
- export CXX=g++
80
- export CXXFLAGS="$CXXFLAGS -g"
81
+ - export EXCLUDE_TESTS="CriticalLock CriticalName CriticalNameHint ParallelNested PreaccumulationLocal SectionsNowait"
82
- export OMP_NUM_THREADS=$(expr $(nproc --all) / 2)
83
- make all
tests/Makefile
@@ -118,7 +118,8 @@ all:
118
prepareGenerate:
119
@ mkdir -p build; \
120
rm -r -f tempmakefile; \
121
- printf "# auto generated by OpDiLib\n" >> tempmakefile;
+ printf "# auto generated by OpDiLib\n" >> tempmakefile; \
122
+ $(CXX) --version;
123
124
# process each driver with its associated tests
125
$(DRIVERS):
0 commit comments