Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dumux-repositories
dumux
Commits
aac8552b
Commit
aac8552b
authored
4 years ago
by
Timo Koch
Committed by
Dennis Gläser
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[cmake] Write test meta data to file for CI
parent
32c688ec
No related branches found
No related tags found
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cmake/modules/DumuxTestMacros.cmake
+55
-0
55 additions, 0 deletions
cmake/modules/DumuxTestMacros.cmake
with
55 additions
and
0 deletions
cmake/modules/DumuxTestMacros.cmake
+
55
−
0
View file @
aac8552b
...
@@ -204,6 +204,61 @@
...
@@ -204,6 +204,61 @@
# future Dune features with older Dune versions supported by Dumux
# future Dune features with older Dune versions supported by Dumux
function
(
dumux_add_test
)
function
(
dumux_add_test
)
dune_add_test
(
${
ARGV
}
)
dune_add_test
(
${
ARGV
}
)
include
(
CMakeParseArguments
)
set
(
OPTIONS EXPECT_COMPILE_FAIL EXPECT_FAIL SKIP_ON_77 COMPILE_ONLY
)
set
(
SINGLEARGS NAME TARGET TIMEOUT
)
set
(
MULTIARGS SOURCES COMPILE_DEFINITIONS COMPILE_FLAGS LINK_LIBRARIES CMD_ARGS MPI_RANKS COMMAND CMAKE_GUARD LABELS
)
cmake_parse_arguments
(
ADDTEST
"
${
OPTIONS
}
"
"
${
SINGLEARGS
}
"
"
${
MULTIARGS
}
"
${
ARGN
}
)
if
(
NOT ADDTEST_NAME
)
# try deducing the test name from the executable name
if
(
ADDTEST_TARGET
)
set
(
ADDTEST_NAME
${
ADDTEST_TARGET
}
)
endif
()
# try deducing the test name form the source name
if
(
ADDTEST_SOURCES
)
# deducing a name is only possible with a single source argument
list
(
LENGTH ADDTEST_SOURCES len
)
if
(
NOT len STREQUAL
"1"
)
message
(
FATAL_ERROR
"Cannot deduce test name from multiple sources!"
)
endif
()
# strip file extension
get_filename_component
(
ADDTEST_NAME
${
ADDTEST_SOURCES
}
NAME_WE
)
endif
()
endif
()
if
(
NOT ADDTEST_COMMAND
)
set
(
ADDTEST_COMMAND
${
ADDTEST_NAME
}
)
endif
()
# Find out whether this test should be a dummy
set
(
SHOULD_SKIP_TEST FALSE
)
set
(
FAILED_CONDITION_PRINTING
""
)
foreach
(
condition
${
ADDTEST_CMAKE_GUARD
}
)
separate_arguments
(
condition
)
if
(
NOT
(
${
condition
}
))
set
(
SHOULD_SKIP_TEST TRUE
)
set
(
FAILED_CONDITION_PRINTING
"
${
FAILED_CONDITION_PRINTING
}
std::cout <<
\"
${
condition
}
\"
<< std::endl;
\n
"
)
endif
()
endforeach
()
# If we do nothing, switch the sources for a dummy source
if
(
SHOULD_SKIP_TEST
)
dune_module_path
(
MODULE dune-common RESULT scriptdir SCRIPT_DIR
)
set
(
ADDTEST_TARGET
)
set
(
dummymain
${
CMAKE_CURRENT_BINARY_DIR
}
/main77_
${
ADDTEST_NAME
}
.cc
)
configure_file
(
${
scriptdir
}
/main77.cc.in
${
dummymain
}
)
set
(
ADDTEST_SOURCES
${
dummymain
}
)
endif
()
# Add the executable if it is not already present
if
(
ADDTEST_SOURCES
)
set
(
ADDTEST_TARGET
${
ADDTEST_NAME
}
)
endif
()
file
(
MAKE_DIRECTORY
"
${
CMAKE_BINARY_DIR
}
/TestMetaData"
)
file
(
WRITE
"
${
CMAKE_BINARY_DIR
}
/TestMetaData/
${
ADDTEST_NAME
}
.json"
"\{
\n
\"
name
\"
:
\"
${
ADDTEST_NAME
}
\"
,
\n
\"
target
\"
:
\"
${
ADDTEST_TARGET
}
\"\n
\}
\n
"
)
endfunction
()
endfunction
()
# Evaluate test guards like dune_add_test internally does
# Evaluate test guards like dune_add_test internally does
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment