diff options
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/testlauncher.cpp | 2 | ||||
-rw-r--r-- | src/test/testmain.cpp | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/test/testlauncher.cpp b/src/test/testlauncher.cpp index f2167af24..c3b424368 100644 --- a/src/test/testlauncher.cpp +++ b/src/test/testlauncher.cpp @@ -190,7 +190,7 @@ int TestLauncher::testTextures() int maxSize = 1024; int nextSize = 1024; int sz = OpenGLImageHelper::getTextureSize() + 1; - if (sz < 16500) + if (sz > 16500) sz = 16500; for (nextSize = 512; nextSize < sz; nextSize *= 2) diff --git a/src/test/testmain.cpp b/src/test/testmain.cpp index c42efc23e..4cc4966d8 100644 --- a/src/test/testmain.cpp +++ b/src/test/testmain.cpp @@ -206,6 +206,7 @@ int TestMain::exec(const bool testAudio) textureSize1 = readValue2(14); if (!invokeFastOpenBatchTest("15")) textureSize2 = readValue2(15); + info.append(strprintf(",%d,%d", textureSize1, textureSize2)); textureSize1 = std::min(textureSize1, textureSize2); if (textureSize1 < 1024) textureSize1 = 1024; |