Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
XDG Integration
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
JennaHuntsman
XDG Integration
Commits
6a77d333
Commit
6a77d333
authored
1 year ago
by
Nat Goodspeed
Browse files
Options
Downloads
Patches
Plain Diff
DRTVWR-587: Skip some tests that only fail with older Visual Studio
parent
7fcb2bdb
No related branches found
Branches containing commit
No related tags found
2 merge requests
!3
Update to main branch
,
!2
Rebase onto current main branch
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/llcommon/tests/lleventdispatcher_test.cpp
+9
-0
9 additions, 0 deletions
indra/llcommon/tests/lleventdispatcher_test.cpp
with
9 additions
and
0 deletions
indra/llcommon/tests/lleventdispatcher_test.cpp
+
9
−
0
View file @
6a77d333
...
...
@@ -1200,6 +1200,9 @@ namespace tut
void
object
::
test
<
20
>
()
{
set_test_name
(
"call array-style functions with right-size arrays"
);
#if defined(_MSC_VER) && _MSC_VER <= 1933
skip
(
"This test fails on VS older than VS2022 ver 17.4"
);
#endif
std
::
vector
<
U8
>
binary
;
for
(
size_t
h
(
0x01
),
i
(
0
);
i
<
5
;
h
+=
0x22
,
++
i
)
{
...
...
@@ -1238,6 +1241,9 @@ namespace tut
void
object
::
test
<
21
>
()
{
set_test_name
(
"verify that passing LLSD() to const char* sends NULL"
);
#if defined(_MSC_VER) && _MSC_VER <= 1933
skip
(
"This test fails on VS older than VS2022 ver 17.4"
);
#endif
ensure_equals
(
"Vars::cp init"
,
v
.
cp
,
""
);
work
(
"methodna_map_mdft"
,
LLSDMap
(
"cp"
,
LLSD
()));
...
...
@@ -1251,6 +1257,9 @@ namespace tut
template
<
>
template
<
>
void
object
::
test
<
22
>
()
{
#if defined(_MSC_VER) && _MSC_VER <= 1933
skip
(
"This test fails on VS older than VS2022 ver 17.4"
);
#endif
set_test_name
(
"call map-style functions with (full | oversized) (arrays | maps)"
);
const
char
binary
[]
=
"
\x99\x88\x77\x66\x55
"
;
LLSD
array_full
(
LLSDMap
...
...
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