diff options
author | Jiyoung Yun <jy910.yun@samsung.com> | 2016-12-27 16:46:08 +0900 |
---|---|---|
committer | Jiyoung Yun <jy910.yun@samsung.com> | 2016-12-27 16:46:08 +0900 |
commit | db20f3f1bb8595633a7e16c8900fd401a453a6b5 (patch) | |
tree | e5435159cd1bf0519276363a6fe1663d1721bed3 /src/pal/tests/palsuite/file_io/GetFileType/test2/getfiletype.cpp | |
parent | 4b4aad7217d3292650e77eec2cf4c198ea9c3b4b (diff) | |
download | coreclr-db20f3f1bb8595633a7e16c8900fd401a453a6b5.tar.gz coreclr-db20f3f1bb8595633a7e16c8900fd401a453a6b5.tar.bz2 coreclr-db20f3f1bb8595633a7e16c8900fd401a453a6b5.zip |
Imported Upstream version 1.0.0.9127upstream/1.0.0.9127
Diffstat (limited to 'src/pal/tests/palsuite/file_io/GetFileType/test2/getfiletype.cpp')
-rw-r--r-- | src/pal/tests/palsuite/file_io/GetFileType/test2/getfiletype.cpp | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/src/pal/tests/palsuite/file_io/GetFileType/test2/getfiletype.cpp b/src/pal/tests/palsuite/file_io/GetFileType/test2/getfiletype.cpp new file mode 100644 index 0000000000..c9d4eb6572 --- /dev/null +++ b/src/pal/tests/palsuite/file_io/GetFileType/test2/getfiletype.cpp @@ -0,0 +1,95 @@ +// 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: getfiletype.c +** +** Purpose: Test the PAL implementation of GetFileType to ensure it +** recognizes opened pipes. +** +** Depends: CreatePipe +** CloseHandle +** +** +**===================================================================*/ + +#include <palsuite.h> + + +int __cdecl main(int argc, char **argv) +{ + HANDLE hReadPipe = NULL; + HANDLE hWritePipe = NULL; + BOOL bRetVal = FALSE; + DWORD dwFileType; + SECURITY_ATTRIBUTES lpPipeAttributes; + + /*Initialize the PAL*/ + if ((PAL_Initialize(argc, argv)) != 0) + { + return (FAIL); + } + + /* + ** create a pipe and make sure GetFileType returns the correct value + */ + + /*Setup SECURITY_ATTRIBUTES structure for CreatePipe*/ + lpPipeAttributes.nLength = sizeof(lpPipeAttributes); + lpPipeAttributes.lpSecurityDescriptor = NULL; + lpPipeAttributes.bInheritHandle = TRUE; + + /*Create a Pipe*/ + bRetVal = CreatePipe(&hReadPipe, /* read handle*/ + &hWritePipe, /* write handle */ + &lpPipeAttributes, /* security attributes*/ + 0); /* pipe size*/ + if (bRetVal == FALSE) + { + Fail("ERROR: %u :Unable to create pipe.\n", GetLastError()); + } + + // Get the file type + dwFileType = GetFileType(hReadPipe); + if (dwFileType != FILE_TYPE_PIPE) + { + if (!CloseHandle(hWritePipe)) + { + Trace("ERROR: %u : Unable to close write pipe handle " + "hWritePipe=0x%lx\n", GetLastError(), hWritePipe); + } + if (!CloseHandle(hReadPipe)) + { + Trace("ERROR: %u : Unable to close read pipe handle " + "hReadPipe=0x%lx\n", GetLastError(), hReadPipe); + } + Fail("ERROR: GetFileType returned %u for a pipe instead of the " + "expected FILE_TYPE_PIPE (%u).\n", + dwFileType, + FILE_TYPE_PIPE); + } + + /*Close write pipe handle*/ + if (!CloseHandle(hWritePipe)) + { + if (!CloseHandle(hReadPipe)) + { + Trace("ERROR: %u : Unable to close read pipe handle " + "hReadPipe=0x%lx\n", GetLastError(), hReadPipe); + } + Fail("ERROR: %u : Unable to close write pipe handle " + "hWritePipe=0x%lx\n", GetLastError(), hWritePipe); + } + + /*Close Read pipe handle*/ + if (!CloseHandle(hReadPipe)) + { + Fail("ERROR: %u : Unable to close read pipe handle " + "hReadPipe=0x%lx\n", GetLastError(), hReadPipe); + } + + PAL_Terminate(); + return (PASS); +} |