Changeset 57577 in vbox for trunk/src/VBox/Runtime/testcase
- Timestamp:
- Aug 28, 2015 6:57:36 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/tstRTHttp.cpp
r57358 r57577 29 29 * Header Files * 30 30 *********************************************************************************************************************************/ 31 #include <iprt/http.h> 32 31 33 #include <iprt/err.h> 32 #include <iprt/http.h> 34 #include <iprt/file.h> 35 #include <iprt/initterm.h> 33 36 #include <iprt/mem.h> 34 #include <iprt/ file.h>37 #include <iprt/message.h> 35 38 #include <iprt/stream.h> 36 39 #include <iprt/string.h> 37 #include <iprt/initterm.h>38 40 #include <iprt/vfslowlevel.h> 39 41 #include <iprt/zip.h> … … 41 43 #define CAFILE_NAME "tstHttp-tempcafile.crt" 42 44 45 #if 0 43 46 static int extractPCA3G5(RTHTTP hHttp, PRTSTREAM CAFile, uint8_t *pu8Buf, size_t cbBuf) 44 47 { … … 188 191 RTPrintf("Error %Rrc trying to fetch '%s'\n", rc, pszFile); 189 192 } 193 #endif 190 194 191 195 int main(int argc, char **argv) … … 200 204 return 1; 201 205 } 206 207 #if 0 /* rewrite to modified API and use test.h! */ 202 208 203 209 for (int i = 1; i < argc; i++) … … 343 349 344 350 return !!cErrors; 351 #else 352 RTMsgError("Needs rewriting. You're better off debugging the actual code in the GUI!\n"); 353 return RTEXITCODE_SKIPPED; 354 #endif 345 355 } 356
Note:
See TracChangeset
for help on using the changeset viewer.