summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test2/GetCalendarInfoW.c
diff options
context:
space:
mode:
authorJiyoung Yun <jy910.yun@samsung.com>2016-12-27 16:46:08 +0900
committerJiyoung Yun <jy910.yun@samsung.com>2016-12-27 16:46:08 +0900
commitdb20f3f1bb8595633a7e16c8900fd401a453a6b5 (patch)
treee5435159cd1bf0519276363a6fe1663d1721bed3 /src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test2/GetCalendarInfoW.c
parent4b4aad7217d3292650e77eec2cf4c198ea9c3b4b (diff)
downloadcoreclr-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/miscellaneous/GetCalendarInfoW/test2/GetCalendarInfoW.c')
-rw-r--r--src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test2/GetCalendarInfoW.c79
1 files changed, 0 insertions, 79 deletions
diff --git a/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test2/GetCalendarInfoW.c b/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test2/GetCalendarInfoW.c
deleted file mode 100644
index d8a59a0fc0..0000000000
--- a/src/pal/tests/palsuite/miscellaneous/GetCalendarInfoW/test2/GetCalendarInfoW.c
+++ /dev/null
@@ -1,79 +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: GetCalendarInfoW.c
-**
-** Purpose: Positive test the GetCalendarInfoW API.
-** Call GetCalendarInfoW to retrieve the information of all
-** calendars
-**
-**
-**============================================================*/
-#define UNICODE
-#include <palsuite.h>
-
-int __cdecl main(int argc, char *argv[])
-{
- int err;
- int index = 0;
- LCID Locale = LOCALE_USER_DEFAULT;
- CALID Calendar;
- CALTYPE CalType = CAL_ITWODIGITYEARMAX|CAL_RETURN_NUMBER;
- DWORD dwValue;
- char *CalendarID[]={"CAL_GREGORIAN",
- "CAL_GREGORIAN_US",
- "CAL_JAPAN",
- "CAL_TAIWAN",
- "CAL_KOREA",
- "CAL_HIJRI",
- "CAL_THAI",
- "CAL_HEBREW",
- "CAL_GREGORIAN_ME_FRENCH",
- "CAL_GREGORIAN_ARABIC",
- "CAL_GREGORIAN_XLIT_ENGLISH",
- "CAL_GREGORIAN_XLIT_FRENCH",
- "CAL_JULIAN"};
-
- char errBuffer[1024];
-
-
- /*Initialize the PAL environment*/
- err = PAL_Initialize(argc, argv);
- if(0 != err)
- {
- return FAIL;
- }
-
- memset(errBuffer, 0, 1024);
-
- for(index=0; index<13; index++)
- {
- Calendar = index + 1;
- /*retrieve the specified calendar info*/
- err = GetCalendarInfoW(Locale,/*locale idendifier*/
- Calendar, /*calendar identifier*/
- CalType, /*calendar tyope*/
- NULL, /*buffer to store the retreive info*/
- 0, /*alwayse zero*/
- &dwValue);/*to store the requrest data*/
- if(0 == err)
- {
- strcat(errBuffer, CalendarID[index]);
- strcat(errBuffer, ", ");
- }
- }
-
-
- if(strlen(errBuffer) > 0)
- {
- Fail("\nFailed to call GetCalendarInfoW API by passing %s"
- " Calendar identifier(s)\n",errBuffer);
- }
-
-
- PAL_Terminate();
- return PASS;
-}