VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstRTShMem.cpp@ 77807

Last change on this file since 77807 was 76553, checked in by vboxsync, 6 years ago

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.1 KB
Line 
1/* $Id: tstRTShMem.cpp 76553 2019-01-01 01:45:53Z vboxsync $ */
2/** @file
3 * IPRT Testcase - RTShMem.
4 */
5
6/*
7 * Copyright (C) 2018-2019 Oracle Corporation
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/*********************************************************************************************************************************
29* Header Files *
30*********************************************************************************************************************************/
31#include <iprt/shmem.h>
32
33#include <iprt/errcore.h>
34#include <iprt/log.h>
35#include <iprt/string.h>
36#include <iprt/test.h>
37
38
39/*********************************************************************************************************************************
40* Global Variables *
41*********************************************************************************************************************************/
42/** Global shared memory object used across all tests. */
43static RTSHMEM g_hShMem = NIL_RTSHMEM;
44/** Data to read/write initially. */
45static char g_szDataBefore[] = "Data before modification!";
46/** Data to read/write for the modification. */
47static char g_szDataAfter[] = "Data after modification!";
48
49
50
51static void tstRTShMem2(void)
52{
53 RTTestISub("Negative");
54
55 /** @todo */
56}
57
58
59static void tstRTShMem1(void)
60{
61 RTTestISub("Basics");
62
63 /* create and destroy. */
64
65 RTTESTI_CHECK_RC_RETV(RTShMemOpen(&g_hShMem, "tstRTShMem-Share", RTSHMEM_O_F_CREATE | RTSHMEM_O_F_READWRITE | RTSHMEM_O_F_MAYBE_EXEC,
66 _512K, 0),
67 VINF_SUCCESS);
68 RTTESTI_CHECK_RETV(g_hShMem != NIL_RTSHMEM);
69
70 /* Query the size. */
71 size_t cbShMem = 0;
72 RTTESTI_CHECK_RC(RTShMemQuerySize(g_hShMem, &cbShMem), VINF_SUCCESS);
73 RTTESTI_CHECK(cbShMem == _512K);
74
75 /* Create a mapping. */
76 void *pvMap;
77 RTTESTI_CHECK_RC_RETV(RTShMemMapRegion(g_hShMem, 0, cbShMem, RTSHMEM_MAP_F_READ | RTSHMEM_MAP_F_WRITE, &pvMap), VINF_SUCCESS);
78 memset(pvMap, 0, cbShMem);
79 memcpy(pvMap, &g_szDataBefore[0], sizeof(g_szDataBefore));
80
81 /* Open the shared memory object and create a second mapping. */
82 RTSHMEM hShMemRead = NIL_RTSHMEM;
83 RTTESTI_CHECK_RC_RETV(RTShMemOpen(&hShMemRead, "tstRTShMem-Share", RTSHMEM_O_F_READWRITE | RTSHMEM_O_F_MAYBE_EXEC,
84 0, 0),
85 VINF_SUCCESS);
86 RTTESTI_CHECK_RETV(hShMemRead != NIL_RTSHMEM);
87
88 void *pvMapRead = NULL;
89 RTTESTI_CHECK_RC(RTShMemQuerySize(hShMemRead, &cbShMem), VINF_SUCCESS);
90 RTTESTI_CHECK(cbShMem == _512K);
91 RTTESTI_CHECK_RC_RETV(RTShMemMapRegion(hShMemRead, 0, cbShMem, RTSHMEM_MAP_F_READ | RTSHMEM_MAP_F_WRITE, &pvMapRead), VINF_SUCCESS);
92 RTTESTI_CHECK(!memcmp(pvMapRead, &g_szDataBefore[0], sizeof(g_szDataBefore)));
93 RTTESTI_CHECK(!memcmp(pvMapRead, pvMap, cbShMem));
94
95 /* Alter the data in the first mapping and check that it is visible in the second one. */
96 memcpy(pvMap, &g_szDataAfter[0], sizeof(g_szDataAfter));
97 RTTESTI_CHECK(!memcmp(pvMapRead, &g_szDataAfter[0], sizeof(g_szDataAfter)));
98 RTTESTI_CHECK(!memcmp(pvMapRead, pvMap, cbShMem));
99
100 RTTESTI_CHECK_RC(RTShMemUnmapRegion(hShMemRead, pvMapRead), VINF_SUCCESS);
101 RTTESTI_CHECK_RC(RTShMemClose(hShMemRead), VINF_SUCCESS);
102 RTTESTI_CHECK_RC(RTShMemUnmapRegion(g_hShMem, pvMap), VINF_SUCCESS);
103 RTTESTI_CHECK_RC(RTShMemClose(g_hShMem), VINF_SUCCESS);
104 g_hShMem = NIL_RTSHMEM;
105}
106
107int main()
108{
109 RTTEST hTest;
110 int rc = RTTestInitAndCreate("tstRTShMem", &hTest);
111 if (rc)
112 return rc;
113 RTTestBanner(hTest);
114
115 /*
116 * The tests.
117 */
118 tstRTShMem1();
119 if (RTTestErrorCount(hTest) == 0)
120 {
121 bool fMayPanic = RTAssertMayPanic();
122 bool fQuiet = RTAssertAreQuiet();
123 RTAssertSetMayPanic(false);
124 RTAssertSetQuiet(true);
125 tstRTShMem2();
126 RTAssertSetQuiet(fQuiet);
127 RTAssertSetMayPanic(fMayPanic);
128 }
129
130 if (g_hShMem != NIL_RTSHMEM)
131 {
132 RTTESTI_CHECK_RC(RTShMemClose(g_hShMem), VINF_SUCCESS);
133 g_hShMem = NIL_RTSHMEM;
134 }
135
136 /*
137 * Summary.
138 */
139 return RTTestSummaryAndDestroy(hTest);
140}
141
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