Changeset 83031 in vbox for trunk/src/VBox/VMM/testcase
- Timestamp:
- Feb 10, 2020 10:02:23 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/testcase/tstSSM-2.cpp
r82968 r83031 23 23 24 24 #include <VBox/log.h> 25 #include <iprt/assert.h> 25 26 #include <iprt/getopt.h> 26 27 #include <iprt/errcore.h> … … 28 29 #include <iprt/path.h> 29 30 #include <iprt/stream.h> 31 #include <iprt/initterm.h> 30 32 31 33 static RTEXITCODE extractUnit(const char *pszFilename, const char *pszUnitname, const char *pszOutputFilename) … … 72 74 int main(int argc, char **argv) 73 75 { 76 int rc = RTR3InitExe(argc, &argv, 0); 77 AssertRCReturn(rc, RTEXITCODE_INIT); 78 74 79 if (argc != 4) 75 80 {
Note:
See TracChangeset
for help on using the changeset viewer.