// 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: Test #1 for the vsprintf function. ** ** **===================================================================*/ #include #include "../vsprintf.h" /* * Notes: memcmp is used, as is strlen. */ int __cdecl main(int argc, char *argv[]) { char checkstr[] = "hello world"; char buf[256] = { 0 }; int ret; if (PAL_Initialize(argc, argv) != 0) { return(FAIL); } testvsp(buf, "hello world"); if (memcmp(checkstr, buf, strlen(checkstr)+1) != 0) { Fail("ERROR: expected \"%s\" (up to %d chars), got \"%s\"\n", checkstr, 256, buf); } testvsp(buf, "xxxxxxxxxxxxxxxxx"); ret = testvsp(buf, "hello world"); if (ret != strlen(checkstr)) { Fail("ERROR: expected negative return value, got %d", ret); } if (memcmp(checkstr, buf, ret) != 0) { Fail("ERROR: expected %s, got %s\n", checkstr, buf); } PAL_Terminate(); return PASS; }