Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Futility
Futility
Commits
e545722f
Commit
e545722f
authored
Jan 05, 2022
by
Collins, Benjamin
Browse files
Merge branch 'hotfix_unused_variables' into 'master'
Hotfix unused variables See merge request futility/Futility!358
parents
aba4d261
c7d6a5db
Pipeline
#183682
passed with stage
in 2 minutes and 14 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
e545722f
...
...
@@ -25,8 +25,10 @@ release:
-
cd $BLD_DIR
-
rm -rf *
-
cmake -DFutility_ENABLE_DBC:BOOL=ON -DCMAKE_Fortran_COMPILER=`which gfortran` -DCMAKE_C_COMPILER=`which gcc` -DCMAKE_CXX_COMPILER=`which g++` $SRC_DIR
-
make -j28
-
make -j28
|& tee make.out
-
ctest -j28
-
(exit `grep -B 4 'Unused \(PRIVATE module \)*variable' make.out | grep 'f90' | wc -l`)
-
(exit `grep "Unused parameter" make.out | grep -vc "mpi_"`)
after_script
:
-
SRC_DIR=`pwd`
-
chmod -R a=u $BLD_DIR
...
...
unit_tests/testArrayUtils/testArrayUtils.f90
View file @
e545722f
...
...
@@ -819,9 +819,9 @@ ENDSUBROUTINE testPopEntry
!-------------------------------------------------------------------------------
SUBROUTINE
testInsertEntry
()
INTEGER
(
SNK
)
::
snk0
INTEGER
(
SNK
),
ALLOCATABLE
::
snk1
(:),
snklist
(:)
INTEGER
(
SNK
),
ALLOCATABLE
::
snklist
(:)
INTEGER
(
SLK
)
::
slk0
INTEGER
(
SLK
),
ALLOCATABLE
::
slk1
(:),
slklist
(:)
INTEGER
(
SLK
),
ALLOCATABLE
::
slklist
(:)
TYPE
(
StringType
)
::
str0
TYPE
(
StringType
),
ALLOCATABLE
::
str1
(:),
strlist
(:)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment