Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Root
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
Model registry
Operate
Environments
Terraform modules
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
Admin message
为了安全,强烈建议开启2FA双因子认证:User Settings -> Account -> Enable two-factor authentication!!!
Show more breadcrumbs
cxwx
Root
Commits
ed173213
Commit
ed173213
authored
3 years ago
by
Axel Naumann
Browse files
Options
Downloads
Patches
Plain Diff
[rdf,test] Suppress Apple M1 failures due to lack of JIT exceptions.
parent
2c784fd2
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
test/CMakeLists.txt
+10
-8
10 additions, 8 deletions
test/CMakeLists.txt
tree/dataframe/test/CMakeLists.txt
+3
-1
3 additions, 1 deletion
tree/dataframe/test/CMakeLists.txt
with
13 additions
and
9 deletions
test/CMakeLists.txt
+
10
−
8
View file @
ed173213
...
...
@@ -71,14 +71,16 @@ ROOT_EXECUTABLE(guitest guitest.cxx LIBRARIES RIO Gui Gpad Hist)
#ROOT_ADD_TEST(test-hsimple COMMAND hsimple)
#---invalid pointer checks---------------------------------------------------------------------
ROOT_ADD_TEST
(
test-check-nullptr
COMMAND
${
ROOT_root_CMD
}
-b -q -l -e
"int*ptr=(int*)0"
-e
"*ptr"
PASSREGEX
"dereference null pointer"
)
if
(
NOT MSVC OR win_broken_tests
)
ROOT_ADD_TEST
(
test-check-invalidptr
COMMAND
${
ROOT_root_CMD
}
-b -q -l -e
"int*ptr=(int*)1"
-e
"*ptr"
PASSREGEX
"invalid memory address"
)
if
(
NOT
(
APPLE AND CMAKE_SYSTEM_PROCESSOR MATCHES arm64
)
OR M1_BROKEN_TESTS
)
ROOT_ADD_TEST
(
test-check-nullptr
COMMAND
${
ROOT_root_CMD
}
-b -q -l -e
"int*ptr=(int*)0"
-e
"*ptr"
PASSREGEX
"dereference null pointer"
)
if
(
NOT MSVC OR win_broken_tests
)
ROOT_ADD_TEST
(
test-check-invalidptr
COMMAND
${
ROOT_root_CMD
}
-b -q -l -e
"int*ptr=(int*)1"
-e
"*ptr"
PASSREGEX
"invalid memory address"
)
endif
()
endif
()
#--minexam-------------------------------------------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
tree/dataframe/test/CMakeLists.txt
+
3
−
1
View file @
ed173213
...
...
@@ -25,7 +25,9 @@ if(NOT MSVC OR win_broken_tests)
ROOT_GENERATE_DICTIONARY
(
MaxSlotHelperDict MaxSlotHelper.h LINKDEF MaxSlotHelperLinkDef.h OPTIONS -inlineInputHeader
)
ROOT_ADD_GTEST
(
dataframe_simple dataframe_simple.cxx MaxSlotHelperDict.cxx LIBRARIES ROOTDataFrame
)
target_include_directories
(
dataframe_simple PRIVATE
${
CMAKE_CURRENT_SOURCE_DIR
}
)
ROOT_ADD_GTEST
(
dataframe_snapshot dataframe_snapshot.cxx LIBRARIES ROOTDataFrame
)
if
(
NOT
(
APPLE AND CMAKE_SYSTEM_PROCESSOR MATCHES arm64
)
OR M1_BROKEN_TESTS
)
ROOT_ADD_GTEST
(
dataframe_snapshot dataframe_snapshot.cxx LIBRARIES ROOTDataFrame
)
endif
()
ROOT_ADD_GTEST
(
dataframe_helpers dataframe_helpers.cxx LIBRARIES ROOTDataFrame
)
ROOT_ADD_GTEST
(
dataframe_vecops dataframe_vecops.cxx LIBRARIES ROOTDataFrame
)
endif
()
...
...
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