Changeset 39030 in vbox for trunk/src/VBox/Runtime/testcase
- Timestamp:
- Oct 19, 2011 10:58:43 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/tstRTFileGetSize-1.cpp
r39028 r39030 47 47 { 48 48 if ( rc == VERR_ACCESS_DENIED 49 || rc == VERR_PERMISSION_DENIED) 49 || rc == VERR_PERMISSION_DENIED 50 || rc == VERR_FILE_NOT_FOUND) 50 51 { 51 52 RTTestIPrintf(RTTESTLVL_ALWAYS, "Cannot access '%s', skipping.", pszFilename); … … 89 90 test1("null", "//./nul"); 90 91 #else 92 test1("null", "/dev/null"); 93 # ifdef RT_OS_LINUX 94 test1("sda", "/dev/sda"); 95 test1("sda1", "/dev/sda1"); 96 test1("sda5", "/dev/sda5"); 97 # endif 91 98 #endif 92 99
Note:
See TracChangeset
for help on using the changeset viewer.