Skip to content

UWP Validation Tests#697

Merged
CedricGuillemet merged 50 commits into
BabylonJS:masterfrom
CedricGuillemet:uwpVT
Jun 30, 2021
Merged

UWP Validation Tests#697
CedricGuillemet merged 50 commits into
BabylonJS:masterfrom
CedricGuillemet:uwpVT

Conversation

@CedricGuillemet
Copy link
Copy Markdown
Collaborator

@CedricGuillemet CedricGuillemet commented Apr 19, 2021

UWP Validation Test App. To run locally until it's automated with the CI.

@CedricGuillemet CedricGuillemet marked this pull request as draft June 10, 2021 08:00
@CedricGuillemet CedricGuillemet marked this pull request as ready for review June 18, 2021 15:50
Comment thread Apps/ValidationTests/Shared/TestUtils.h Outdated
Comment on lines +33 to +44
std::string WStringToString(const wchar_t* w, size_t size)
{
auto length{ ::WideCharToMultiByte(CP_UTF8, 0, w,static_cast<int>(size), nullptr, 0, nullptr, nullptr) };

std::string ret{};
if (length)
{
ret.resize(length);
::WideCharToMultiByte(CP_UTF8, 0, w, static_cast<int>(size), &ret[0], length, nullptr, nullptr);
}
return ret;
}
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Comment thread Apps/ValidationTests/CMakeLists.txt Outdated
target_compile_options(ValidationTests PRIVATE /await)
endif()


Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: extra line

Suggested change

Comment thread Apps/ValidationTests/Shared/TestUtils.h
@CedricGuillemet CedricGuillemet merged commit fa41470 into BabylonJS:master Jun 30, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants