summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLadislav <Zezula>2014-04-18 20:33:06 +0200
committerLadislav <Zezula>2014-04-18 20:33:06 +0200
commitfd430b981c6c365dfb9e39b1ee98f7c098128cb4 (patch)
treec1fd9ad234812bf8cd199daf54f6b7b74373a2f7
parent5720c3b5b07479d89fbd9175bc4f323d49ff5ccd (diff)
+ Renamed Test.cpp to StormTest.cpp
-rw-r--r--CMakeLists.txt2
-rw-r--r--StormLib_test.vcproj2
-rw-r--r--StormLib_test.vcxproj2
-rw-r--r--StormLib_test.vcxproj.filters2
-rw-r--r--src/SFileAttributes.cpp2
-rw-r--r--test/StormTest.cpp (renamed from test/Test.cpp)4
-rw-r--r--test/TLogHelper.cpp2
7 files changed, 8 insertions, 8 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 3b22069..5503d83 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -237,7 +237,7 @@ set(ZLIB_BZIP2_FILES
)
set(TEST_SRC_FILES
- test/Test.cpp
+ test/StormTest.cpp
)
add_definitions(-D_7ZIP_ST -DBZ_STRICT_ANSI)
diff --git a/StormLib_test.vcproj b/StormLib_test.vcproj
index 43f872b..337ac78 100644
--- a/StormLib_test.vcproj
+++ b/StormLib_test.vcproj
@@ -1031,7 +1031,7 @@
</FileConfiguration>
</File>
<File
- RelativePath=".\test\Test.cpp"
+ RelativePath=".\test\StormTest.cpp"
>
<FileConfiguration
Name="Debug|Win32"
diff --git a/StormLib_test.vcxproj b/StormLib_test.vcxproj
index 3dcb035..055ba70 100644
--- a/StormLib_test.vcxproj
+++ b/StormLib_test.vcxproj
@@ -307,7 +307,7 @@
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level4</WarningLevel>
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Level4</WarningLevel>
</ClCompile>
- <ClCompile Include="test\Test.cpp">
+ <ClCompile Include="test\StormTest.cpp">
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level4</WarningLevel>
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Level4</WarningLevel>
<WarningLevel Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Level4</WarningLevel>
diff --git a/StormLib_test.vcxproj.filters b/StormLib_test.vcxproj.filters
index e442747..25f2cdd 100644
--- a/StormLib_test.vcxproj.filters
+++ b/StormLib_test.vcxproj.filters
@@ -160,7 +160,7 @@
<ClCompile Include="src\SFileVerify.cpp">
<Filter>Source Files</Filter>
</ClCompile>
- <ClCompile Include="test\Test.cpp">
+ <ClCompile Include="test\StormTest.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="src\adpcm\adpcm.cpp">
diff --git a/src/SFileAttributes.cpp b/src/SFileAttributes.cpp
index ca865a0..479363d 100644
--- a/src/SFileAttributes.cpp
+++ b/src/SFileAttributes.cpp
@@ -129,7 +129,7 @@ static DWORD CheckSizeOfAttributesFile(DWORD cbAttrFile, DWORD dwAttrFlags, DWOR
// Invalid size of the (attributes) file
// Note that many MPQs, especially Warcraft III maps have the size of (attributes) invalid.
// We only perform this check if this is the STORMLIB testprogram itself
- assert(false);
+// assert(false);
#endif
return 0;
diff --git a/test/Test.cpp b/test/StormTest.cpp
index 0b5e679..351ed5e 100644
--- a/test/Test.cpp
+++ b/test/StormTest.cpp
@@ -1,11 +1,11 @@
/*****************************************************************************/
-/* StormLibTest.cpp Copyright (c) Ladislav Zezula 2003 */
+/* StormTest.cpp Copyright (c) Ladislav Zezula 2003 */
/*---------------------------------------------------------------------------*/
/* Test module for StormLib */
/*---------------------------------------------------------------------------*/
/* Date Ver Who Comment */
/* -------- ---- --- ------- */
-/* 25.03.03 1.00 Lad The first version of StormLibTest.cpp */
+/* 25.03.03 1.00 Lad The first version of StormTest.cpp */
/*****************************************************************************/
#define _CRT_NON_CONFORMING_SWPRINTFS
diff --git a/test/TLogHelper.cpp b/test/TLogHelper.cpp
index 6876637..e2d6c74 100644
--- a/test/TLogHelper.cpp
+++ b/test/TLogHelper.cpp
@@ -2,7 +2,7 @@
/* TLogHelper.cpp Copyright (c) Ladislav Zezula 2013 */
/*---------------------------------------------------------------------------*/
/* Helper class for reporting StormLib tests */
-/* This file should be included directly from Test.cpp using #include */
+/* This file should be included directly from StormTest.cpp using #include */
/*---------------------------------------------------------------------------*/
/* Date Ver Who Comment */
/* -------- ---- --- ------- */