Changeset 97993 in vbox for trunk/src/VBox/Main/testcase
- Timestamp:
- Jan 5, 2023 9:55:51 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/testcase/tstGuestCtrlPaths.cpp
r97538 r97993 34 34 using namespace com; 35 35 36 #include <iprt/assert.h> 36 37 #include <iprt/env.h> 37 38 #include <iprt/rand.h> … … 125 126 * Destination path building testing. 126 127 */ 128 bool fQuiet = RTAssertSetQuiet(true); 129 bool fMayPanic = RTAssertSetMayPanic(false); 127 130 tstPathBuildDestination("", PathStyle_UNIX, "", PathStyle_UNIX, VERR_PATH_ZERO_LENGTH, ""); 128 131 tstPathBuildDestination(".", PathStyle_UNIX, ".", PathStyle_UNIX, VINF_SUCCESS, "."); … … 151 154 tstPathBuildDestination("/tmp/bar/foo.txt", PathStyle_UNIX, "c:\\temp\\foo2.txt", PathStyle_DOS, VINF_SUCCESS, "c:\\temp\\foo2.txt"); 152 155 tstPathBuildDestination("/tmp/bar/foo3.txt", PathStyle_UNIX, "c:\\temp\\", PathStyle_DOS, VINF_SUCCESS, "c:\\temp\\foo3.txt"); 156 RTAssertSetMayPanic(fMayPanic); 157 RTAssertSetQuiet(fQuiet); 153 158 154 159 RTTestIPrintf(RTTESTLVL_DEBUG, "Shutting down COM...\n");
Note:
See TracChangeset
for help on using the changeset viewer.