VirtualBox

vbox的更動 45512 路徑 trunk/src/VBox/Runtime/testcase


忽略:
時間撮記:
2013-4-12 上午10:10:40 (12 年 以前)
作者:
vboxsync
訊息:

tstHttp => tstRTHttp; require at least one parameter to start the test

位置:
trunk/src/VBox/Runtime/testcase
檔案:
修改 2 筆資料
移動 1 筆資料

圖例:

未更動
新增
刪除
  • trunk/src/VBox/Runtime/testcase/Makefile.kmk

    r45131 r45512  
    6666        tstFileLock \
    6767        tstFork \
    68         tstHttp \
     68        tstRTHttp \
    6969        tstRTFsQueries \
    7070        tstRTFilesystem \
     
    231231
    232232ifdef VBOX_WITH_LIBCURL
    233 tstHttp_TEMPLATE = VBOXR3TSTEXE
    234 tstHttp_SOURCES = tstHttp.cpp
    235 tstHttp_SDKS = VBOX_LIBCURL
     233tstRTHttp_TEMPLATE = VBOXR3TSTEXE
     234tstRTHttp_SOURCES = tstRTHttp.cpp
     235tstRTHttp_SDKS = VBOX_LIBCURL
    236236endif
    237237
  • trunk/src/VBox/Runtime/testcase/tstLog.cpp

    r45174 r45512  
    3131#include <iprt/initterm.h>
    3232#include <iprt/err.h>
     33#include <iprt/stream.h>
    3334
    3435#include <stdio.h>
     
    3738{
    3839    RTR3InitExeNoArguments(0);
     40    uint32_t a = 0x80000000, b = 0x80000000, c = 0x80000000;
     41    RTPrintf("%d %d", 0x80000000, 0x80000000);
    3942    printf("tstLog: Requires manual inspection of the log output!\n");
    4043    RTLogPrintf("%%Rrc %d: %Rrc\n", VERR_INVALID_PARAMETER, VERR_INVALID_PARAMETER);
  • trunk/src/VBox/Runtime/testcase/tstRTHttp.cpp

    r45509 r45512  
    3838#define CAFILE_NAME "tstHttp-tempcafile.crt"
    3939
    40 int main()
     40int main(int argc, char **argv)
    4141{
    4242    unsigned cErrors = 0;
    4343
    44     RTR3InitExeNoArguments(0);
     44    RTR3InitExe(argc, &argv, 0);
     45
     46    if (argc <= 1)
     47    {
     48        RTPrintf("usage: %s default\n", argv[0]);
     49        return 1;
     50    }
     51
     52    for (int i = 1; i < argc; i++)
     53    {
     54        if (!strcmp(argv[i], "default"))
     55            ;
     56        else
     57        {
     58            RTPrintf("Unknown parameter '%s'\n", argv[i]);
     59            return 1;
     60        }
     61    }
    4562
    4663    RTHTTP hHttp;
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette