Rename apps/openmw_tests files to follow naming conventions

This commit is contained in:
Alexei Kotov 2025-02-22 22:04:27 +03:00
parent dd16c87080
commit a3e19f9bb7
6 changed files with 5 additions and 9 deletions

View File

@ -23,10 +23,6 @@ apps/components_tests/lua/test_yaml.cpp
apps/components_tests/misc/test_endianness.cpp
apps/components_tests/misc/test_resourcehelpers.cpp
apps/components_tests/misc/test_stringops.cpp
apps/openmw_tests/mwdialogue/test_keywordsearch.cpp
apps/openmw_tests/mwscript/test_scripts.cpp
apps/openmw_tests/mwscript/test_utils.hpp
apps/openmw_tests/mwworld/test_store.cpp
components/crashcatcher/windows_crashcatcher.cpp
components/crashcatcher/windows_crashcatcher.hpp
components/crashcatcher/windows_crashmonitor.cpp

View File

@ -6,14 +6,14 @@ file(GLOB UNITTEST_SRC_FILES
options.cpp
mwworld/test_store.cpp
mwworld/teststore.cpp
mwworld/testduration.cpp
mwworld/testtimestamp.cpp
mwworld/testptr.cpp
mwdialogue/test_keywordsearch.cpp
mwdialogue/testkeywordsearch.cpp
mwscript/test_scripts.cpp
mwscript/testscripts.cpp
)
source_group(apps\\openmw-tests FILES ${UNITTEST_SRC_FILES})

View File

@ -1,7 +1,7 @@
#include <gtest/gtest.h>
#include <sstream>
#include "test_utils.hpp"
#include "testutils.hpp"
namespace
{
@ -935,4 +935,4 @@ End)mwscript";
registerExtensions();
EXPECT_FALSE(!compile(sIssue6807));
}
}
}