VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstRTFsQueries.cpp@ 7348

Last change on this file since 7348 was 5999, checked in by vboxsync, 17 years ago

The Giant CDDL Dual-License Header Change.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.6 KB
Line 
1/* $Id: tstRTFsQueries.cpp 5999 2007-12-07 15:05:06Z vboxsync $ */
2/** @file
3 * innotek Portable Runtime Testcase - RTFs Queries..
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27/*******************************************************************************
28* Header Files *
29*******************************************************************************/
30#include <iprt/path.h>
31#include <iprt/runtime.h>
32#include <iprt/stream.h>
33#include <iprt/err.h>
34
35
36int main(int argc, char **argv)
37{
38 RTR3Init();
39
40 /*
41 * Process all arguments (including the executable).
42 */
43 int cErrors = 0;
44 for (int i = 0; i < argc; i++)
45 {
46 RTPrintf("tstRTFsQueries: '%s'...\n", argv[i]);
47
48 uint32_t u32Serial;
49 int rc = RTFsQuerySerial(argv[i], &u32Serial);
50 if (RT_SUCCESS(rc))
51 RTPrintf("tstRTFsQueries: u32Serial=%#010RX32\n", u32Serial);
52 else
53 {
54 RTPrintf("tstRTFsQueries: RTFsQuerySerial failed, rc=%Vrc\n", rc);
55 cErrors++;
56 }
57
58 RTFOFF cbTotal = 42;
59 RTFOFF cbFree = 42;
60 uint32_t cbBlock = 42;
61 uint32_t cbSector = 42;
62 rc = RTFsQuerySizes(argv[i], &cbTotal, &cbFree, &cbBlock, &cbSector);
63 if (RT_SUCCESS(rc))
64 RTPrintf("tstRTFsQueries: cbTotal=%RTfoff cbFree=%RTfoff cbBlock=%d cbSector=%d\n",
65 cbTotal, cbFree, cbBlock, cbSector);
66 else
67 {
68 RTPrintf("tstRTFsQueries: RTFsQuerySerial failed, rc=%Vrc\n", rc);
69 cErrors++;
70 }
71
72 rc = RTFsQuerySizes(argv[i], NULL, NULL, NULL, NULL);
73 if (RT_FAILURE(rc))
74 {
75 RTPrintf("tstRTFsQueries: RTFsQuerySizes(nop) failed, rc=%Vrc\n", rc);
76 cErrors++;
77 }
78
79 RTFSPROPERTIES Props;
80 rc = RTFsQueryProperties(argv[i], &Props);
81 if (RT_SUCCESS(rc))
82 RTPrintf("tstRTFsQueries: cbMaxComponent=%u %s %s %s %s %s %s\n",
83 Props.cbMaxComponent,
84 Props.fCaseSensitive ? "case" : "not-case",
85 Props.fCompressed ? "compressed" : "not-compressed",
86 Props.fFileCompression ? "file-compression" : "no-file-compression",
87 Props.fReadOnly ? "readonly" : "readwrite",
88 Props.fRemote ? "remote" : "not-remote",
89 Props.fSupportsUnicode ? "supports-unicode" : "doesn't-support-unicode");
90 else
91 {
92 RTPrintf("tstRTFsQueries: RTFsQueryProperties failed, rc=%Vrc\n", rc);
93 cErrors++;
94 }
95 }
96
97 if (!cErrors)
98 RTPrintf("tstRTFsQueries: SUCCESS\n");
99 else
100 RTPrintf("tstRTFsQueries: FAIlURE - %u errors\n", cErrors);
101 return !!cErrors;
102}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette