summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/filemapping_memmgt/RtlMoveMemory/test1/test1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/tests/palsuite/filemapping_memmgt/RtlMoveMemory/test1/test1.cpp')
-rw-r--r--src/pal/tests/palsuite/filemapping_memmgt/RtlMoveMemory/test1/test1.cpp56
1 files changed, 0 insertions, 56 deletions
diff --git a/src/pal/tests/palsuite/filemapping_memmgt/RtlMoveMemory/test1/test1.cpp b/src/pal/tests/palsuite/filemapping_memmgt/RtlMoveMemory/test1/test1.cpp
deleted file mode 100644
index 7fc56510d8..0000000000
--- a/src/pal/tests/palsuite/filemapping_memmgt/RtlMoveMemory/test1/test1.cpp
+++ /dev/null
@@ -1,56 +0,0 @@
-// Licensed to the .NET Foundation under one or more agreements.
-// The .NET Foundation licenses this file to you under the MIT license.
-// See the LICENSE file in the project root for more information.
-
-/*=============================================================
-**
-** Source: test1.c
-**
-** Purpose: Simple test -- have two 128 blocks of memory allocated. Then
-** move one block to the other and check to see that the data was not
-** corrupted.
-**
-**
-**============================================================*/
-
-#include <palsuite.h>
-
-enum Memory
-{
- MEMORY_AMOUNT = 128
-};
-
-int __cdecl main(int argc, char *argv[])
-{
- char NewAddress[MEMORY_AMOUNT];
- char OldAddress[MEMORY_AMOUNT];
- int i;
- char temp;
-
- if(PAL_Initialize(argc, argv))
- {
- return FAIL;
- }
-
- /* Put some data into the block we'll be moving */
- memset(OldAddress, 'X', MEMORY_AMOUNT);
-
- /* Move the block to the NewAddress */
- RtlMoveMemory(NewAddress, OldAddress, MEMORY_AMOUNT);
-
- /* Check to ensure the data didn't get corrupted */
- for(i=0; i<MEMORY_AMOUNT; ++i)
- {
- if(NewAddress[i] != 'X')
- {
- temp = NewAddress[i];
- Fail("ERROR: When the memory was moved to a new location, the "
- "data which was stored in it was somehow corrupted. "
- "Character %d should have been 'X' but instead is %c.\n",
- i, temp);
- }
- }
-
- PAL_Terminate();
- return PASS;
-}