tstGetOpt.cpp revision 81587231c9c584851518872e197f6f02dffe68ca
/* $Id$ */
/** @file
* IPRT Testcase - RTGetOpt
*/
/*
* Copyright (C) 2007 Sun Microsystems, Inc.
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
#include <iprt/initterm.h>
int main()
{
int cErrors = 0;
RTR3Init();
RTPrintf("tstGetOpt: TESTING...\n");
#define CHECK(expr) do { if (!(expr)) { RTPrintf("tstGetOpt: error line %d (iNext=%d): %s\n", __LINE__, GetState.iNext, #expr); cErrors++; } } while (0)
do { \
if (!(expr)) { \
cErrors++; \
} \
} while (0)
#define CHECK_pDef(paOpts, i) \
CHECK2(Val.pDef == &(paOpts)[(i)], ("Got #%d (%p) expected #%d\n", (int)(Val.pDef - &(paOpts)[0]), Val.pDef, i));
do { \
CHECK2(GetState.iNext == (iInc) + iPrev, ("iNext=%d expected %d\n", GetState.iNext, (iInc) + iPrev)); \
} while (0)
/*
* The basics.
*/
static const RTGETOPTDEF s_aOpts2[] =
{
};
char *argv2[] =
{
"-s", "string1",
"--optwithstring", "string2",
"-i", "-42",
"-i:-42",
"-i=-42",
"-i:", "-42",
"-i=", "-42",
"--optwithint", "42",
"--optwithint:42",
"--optwithint=42",
"--optwithint:", "42",
"--optwithint=", "42",
"-v",
"--verbose",
"-q",
"--quiet",
"-novalue",
"-startvm", "myvm",
"nodash",
"nodashval", "string3",
"filename1",
"-q",
"filename2",
"-vqi999",
};
CHECK(RT_SUCCESS(RTGetOptInit(&GetState, argc2, argv2, &s_aOpts2[0], RT_ELEMENTS(s_aOpts2), 0, 0 /* fFlags */)));
/* -i */
/* --optwithint */
/* -novalue / -startvm (single dash long options) */
/* no-dash options */
/* non-option, option, non-option */
/* compress short options */
/* the end */
/*
* Summary.
*/
if (!cErrors)
RTPrintf("tstGetOpt: SUCCESS\n");
else
return !!cErrors;
}