Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
Catalyst
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
ParaView
Catalyst
Commits
5b843f2d
Commit
5b843f2d
authored
6 months ago
by
Ben Boeckel
Browse files
Options
Downloads
Patches
Plain Diff
tests/abi_tests: only expect `.debug_info_seg` in Debug builds
parent
0d0b45ce
No related branches found
No related tags found
1 merge request
!119
Ci default release
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/abi_tests/CMakeLists.txt
+1
-0
1 addition, 0 deletions
tests/abi_tests/CMakeLists.txt
tests/abi_tests/nm.cmake
+3
-1
3 additions, 1 deletion
tests/abi_tests/nm.cmake
with
4 additions
and
1 deletion
tests/abi_tests/CMakeLists.txt
+
1
−
0
View file @
5b843f2d
...
...
@@ -31,6 +31,7 @@ if (NM_EXECUTABLE)
"-Difort_mangle=$<OR:$<STREQUAL:
${
CMAKE_Fortran_COMPILER_ID
}
,Intel>,$<STREQUAL:
${
CMAKE_Fortran_COMPILER_ID
}
,IntelLLVM>>"
"-Dicc_mangle=$<STREQUAL:
${
CMAKE_C_COMPILER_ID
}
,Intel>"
"-Dicx_mangle=$<STREQUAL:
${
CMAKE_C_COMPILER_ID
}
,IntelLLVM>"
"-Dbuild_config=$<CONFIG>"
-P
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/nm.cmake"
)
endif
()
...
...
This diff is collapsed.
Click to expand it.
tests/abi_tests/nm.cmake
+
3
−
1
View file @
5b843f2d
...
...
@@ -75,7 +75,9 @@ if (icc_mangle OR icx_mangle)
"_edata"
"_end"
)
endif
()
if
(
icc_mangle
)
set
(
debug_types
Debug
)
if
(
icc_mangle AND build_config IN_LIST debug_types
)
list
(
APPEND expected
".debug_info_seg"
)
endif
()
...
...
This diff is collapsed.
Click to expand it.
Ben Boeckel
@ben.boeckel
mentioned in commit
cffc97f0
·
6 months ago
mentioned in commit
cffc97f0
mentioned in commit cffc97f0b7067c7b19af3d4a0ff08a2dec3ab5b4
Toggle commit list
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