Skip to content
Snippets Groups Projects
Commit 6a77d333 authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

DRTVWR-587: Skip some tests that only fail with older Visual Studio

parent 7fcb2bdb
No related branches found
No related tags found
2 merge requests!3Update to main branch,!2Rebase onto current main branch
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment