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
b8d941aa
Commit
b8d941aa
authored
6 years ago
by
Enrico Guiraud
Committed by
Danilo Piparo
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[DF] Change TSlotStackPutBackTooMany to only test the nominal case
parent
08f2238b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tree/dataframe/test/dataframe_nodes.cxx
+4
-23
4 additions, 23 deletions
tree/dataframe/test/dataframe_nodes.cxx
with
4 additions
and
23 deletions
tree/dataframe/test/dataframe_nodes.cxx
+
4
−
23
View file @
b8d941aa
...
...
@@ -37,31 +37,12 @@ TEST(RDataFrameNodes, TSlotStackGetOneTooMuch)
TEST
(
RDataFrameNodes
,
TSlotStackPutBackTooMany
)
{
std
::
mutex
m
;
auto
theTest
=
[
&
m
]()
{
unsigned
int
n
(
2
);
ROOT
::
Internal
::
RDF
::
TSlotStack
s
(
n
);
std
::
vector
<
std
::
thread
>
ts
;
for
(
unsigned
int
i
=
0
;
i
<
2
;
++
i
)
{
ts
.
emplace_back
([
&
s
,
&
m
]()
{
std
::
lock_guard
<
std
::
mutex
>
lg
(
m
);
s
.
GetSlot
();
});
}
for
(
unsigned
int
i
=
0
;
i
<
2
;
++
i
)
{
ts
.
emplace_back
([
&
s
,
&
m
,
i
]()
{
std
::
lock_guard
<
std
::
mutex
>
lg
(
m
);
s
.
ReturnSlot
(
i
);
});
}
for
(
auto
&&
t
:
ts
)
t
.
join
();
auto
theTest
=
[]()
{
ROOT
::
Internal
::
RDF
::
TSlotStack
s
(
1
);
s
.
ReturnSlot
(
0
);
};
ASSER
T_DEATH
(
theTest
(),
"TSlotStack has a reference count relative to an index which will become negative"
);
EXPEC
T_DEATH
(
theTest
(),
"TSlotStack has a reference count relative to an index which will become negative"
);
}
#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