summaryrefslogtreecommitdiffstats
path: root/tests/ChunkData/ArraytoCoord.cpp
diff options
context:
space:
mode:
authorTycho <work.tycho+git@gmail.com>2014-05-23 16:02:55 +0200
committerTycho <work.tycho+git@gmail.com>2014-05-23 16:02:55 +0200
commit5a76eab4c0ff309886cb407ba6b9d84516db11ff (patch)
tree51997884fc6c7407b1737dee014f94cea977b57a /tests/ChunkData/ArraytoCoord.cpp
parentAdded callback for stopping starvation mode (diff)
parentIgnore CTest files (diff)
downloadcuberite-5a76eab4c0ff309886cb407ba6b9d84516db11ff.tar
cuberite-5a76eab4c0ff309886cb407ba6b9d84516db11ff.tar.gz
cuberite-5a76eab4c0ff309886cb407ba6b9d84516db11ff.tar.bz2
cuberite-5a76eab4c0ff309886cb407ba6b9d84516db11ff.tar.lz
cuberite-5a76eab4c0ff309886cb407ba6b9d84516db11ff.tar.xz
cuberite-5a76eab4c0ff309886cb407ba6b9d84516db11ff.tar.zst
cuberite-5a76eab4c0ff309886cb407ba6b9d84516db11ff.zip
Diffstat (limited to '')
-rw-r--r--tests/ChunkData/ArraytoCoord.cpp (renamed from tests/ChunkBuffer/ArraytoCoord.cpp)8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/ChunkBuffer/ArraytoCoord.cpp b/tests/ChunkData/ArraytoCoord.cpp
index 5563a3f86..fe82a3a7b 100644
--- a/tests/ChunkBuffer/ArraytoCoord.cpp
+++ b/tests/ChunkData/ArraytoCoord.cpp
@@ -1,6 +1,6 @@
#include "TestGlobals.h"
-#include "ChunkBuffer.h"
+#include "ChunkData.h"
@@ -8,7 +8,7 @@ int main(int argc, char** argv)
{
{
// Test first segment
- cChunkBuffer buffer;
+ cChunkData buffer;
BLOCKTYPE* SrcBlockBuffer = new BLOCKTYPE[16 * 16 * 256];
memset(SrcBlockBuffer, 0x00, 16 * 16 * 256);
@@ -45,7 +45,7 @@ int main(int argc, char** argv)
{
// test following segment
- cChunkBuffer buffer;
+ cChunkData buffer;
BLOCKTYPE* SrcBlockBuffer = new BLOCKTYPE[16 * 16 * 256];
memset(SrcBlockBuffer, 0x00, 16 * 16 * 256);
@@ -82,7 +82,7 @@ int main(int argc, char** argv)
{
// test zeros
- cChunkBuffer buffer;
+ cChunkData buffer;
BLOCKTYPE* SrcBlockBuffer = new BLOCKTYPE[16 * 16 * 256];
memset(SrcBlockBuffer, 0x00, 16 * 16 * 256);