1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-10-16 11:46:34 +00:00
openmw/apps
elsid 7bf1ea32b0
Disable not working tests for MSVC
std::streambuf in MSVC does not support buffers larger than 2**31 - 1:
https://developercommunity.visualstudio.com/t/stdbasic-stringbuf-is-broken/290124

Simple test to check if it works:

TEST(IMemStreamTest, shouldRead)
{
    std::string src(std::numeric_limits<uint32_t>::max() / 2 + 1, '\0');
    Files::IMemStream stream(src.data(), src.size());
    std::string dst(src.size(), '\0');
    stream.read(dst.data(), src.size());
    EXPECT_FALSE(stream.fail()) << std::generic_category().message(errno);
}
2025-10-12 11:11:24 +02:00
..
benchmarks
bsatool Use proper naming for BSA File and Hash members 2025-09-20 19:21:17 +02:00
bulletobjecttool
components_tests Disable not working tests for MSVC 2025-10-12 11:11:24 +02:00
esmtool Add and fix -Wshadow 2025-08-18 21:09:06 +02:00
essimporter Remove small translation units 2025-08-29 00:41:47 +02:00
launcher Merge branch 'formatcomponents' into 'master' 2025-08-31 17:59:35 +00:00
mwiniimporter Resolve a number of Coverity defects 2025-08-06 19:52:09 +02:00
navmeshtool
niftest Fix and enforce local variable naming 2025-08-05 21:27:48 +02:00
opencs Merge branch 'rm_small_tu' into 'master' 2025-08-30 07:45:30 +00:00
opencs_tests
openmw Merge branch 'solidlyrooted' into 'master' 2025-10-11 11:59:17 +03:00
openmw_tests Fix and enforce parameter naming 2025-08-27 12:45:09 +02:00
wizard Fix and enforce parameter naming 2025-08-27 12:45:09 +02:00
doc.hpp