VirtualBox

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


忽略:
時間撮記:
2010-10-28 上午09:27:05 (14 年 以前)
作者:
vboxsync
訊息:

*: spelling fixes, thanks Timeless!

位置:
trunk/src/VBox/Runtime/testcase
檔案:
修改 13 筆資料

圖例:

未更動
新增
刪除
  • trunk/src/VBox/Runtime/testcase/soundcard.h

    r1 r33540  
    149149{
    150150        int devno;      /* Synthesizer # */
    151         char data[4000]; /* Device spesific command/data record */
     151        char data[4000]; /* Device specific command/data record */
    152152}synth_control;
    153153
     
    330330#define SEQ_DRUMON              6       /*** OBSOLETE ***/
    331331#define SEQ_DRUMOFF             7       /*** OBSOLETE ***/
    332 #define SEQ_ECHO                TMR_ECHO        /* For synching programs with output */
     332#define SEQ_ECHO                TMR_ECHO        /* For syncing programs with output */
    333333#define SEQ_AFTERTOUCH          9
    334334#define SEQ_CONTROLLER          10
     
    752752 * The AD1848 codec and compatibles have three line level inputs
    753753 * (line, aux1 and aux2). Since each card manufacturer have assigned
    754  * different meanings to these inputs, it's inpractical to assign
     754 * different meanings to these inputs, it's impractical to assign
    755755 * specific meanings (line, cd, synth etc.) to them.
    756756 */
     
    922922
    923923/*
    924  * Two ioctls for special souncard function
     924 * Two ioctls for special soundcard function
    925925 */
    926926#define SOUND_MIXER_AGC  _SIOWR('M', 103, int)
     
    12351235
    12361236/*
    1237  * Timing and syncronization macros
     1237 * Timing and synchronization macros
    12381238 */
    12391239
  • trunk/src/VBox/Runtime/testcase/tstFork.cpp

    r28800 r33540  
    5757#else
    5858    /*
    59      * Get values that are supposed to or change accross the fork.
     59     * Get values that are supposed to or change across the fork.
    6060     */
    6161    RTPROCESS const ProcBefore = RTProcSelf();
  • trunk/src/VBox/Runtime/testcase/tstLdr.cpp

    r28800 r33540  
    4545/** Whether it's kernel model code or not.. */
    4646static bool     g_fKernel = true;
    47 /** Module architectur bit count. */
     47/** Module architecture bit count. */
    4848static uint32_t g_cBits = HC_ARCH_BITS;
    4949
  • trunk/src/VBox/Runtime/testcase/tstRTAvl.cpp

    r28800 r33540  
    190190
    191191    /*
    192      * Determin the range.
     192     * Determine the range.
    193193     */
    194194    uint32_t KeyLast;
     
    315315/**
    316316 * Prints a progress indicator dot.
    317  * @param   iCur    The current operation. (can be decending too)
     317 * @param   iCur    The current operation. (can be descending too)
    318318 * @param   cMax    The max number of operations (exclusive).
    319319 */
  • trunk/src/VBox/Runtime/testcase/tstRTLockValidator.cpp

    r28800 r33540  
    795795    }
    796796
    797     /* Enter the first 4 critsects in ascending order and thereby definining
     797    /* Enter the first 4 critsects in ascending order and thereby defining
    798798       this as a valid lock order.  */
    799799    RTTEST_CHECK_RC(g_hTest, RTCritSectEnter(&g_aCritSects[0]), VINF_SUCCESS);
     
    984984    RTTEST_CHECK(g_hTest, RTCritSectSetSubClass(&g_aCritSects[0], RTLOCKVAL_SUB_CLASS_NONE) == RTLOCKVAL_SUB_CLASS_ANY);
    985985
    986     /* Enter the first 4 critsects in ascending order and thereby definining
     986    /* Enter the first 4 critsects in ascending order and thereby defining
    987987       this as a valid lock order.  */
    988988    RTTEST_CHECK_RC(g_hTest, RTCritSectEnter(&g_aCritSects[0]), VINF_SUCCESS);
     
    10441044    RTTEST_CHECK(g_hTest, RTSemRWSetSubClass(g_ahSemRWs[0], RTLOCKVAL_SUB_CLASS_NONE) == RTLOCKVAL_SUB_CLASS_ANY);
    10451045
    1046     /* Enter the first 4 critsects in ascending order and thereby definining
     1046    /* Enter the first 4 critsects in ascending order and thereby defining
    10471047       this as a valid lock order.  */
    10481048    RTTEST_CHECK_RC(g_hTest, RTSemRWRequestWrite(g_ahSemRWs[0], RT_INDEFINITE_WAIT), VINF_SUCCESS);
     
    11361136    RTTEST_CHECK(g_hTest, RTSemMutexSetSubClass(g_ahSemMtxes[0], RTLOCKVAL_SUB_CLASS_NONE) == RTLOCKVAL_SUB_CLASS_ANY);
    11371137
    1138     /* Enter the first 4 critsects in ascending order and thereby definining
     1138    /* Enter the first 4 critsects in ascending order and thereby defining
    11391139       this as a valid lock order.  */
    11401140    RTTEST_CHECK_RC(g_hTest, RTSemMutexRequest(g_ahSemMtxes[0], RT_INDEFINITE_WAIT), VINF_SUCCESS);
  • trunk/src/VBox/Runtime/testcase/tstRTMemPool.cpp

    r28800 r33540  
    177177
    178178    /*
    179      * Pseudo random freeing to test list maintaince.
     179     * Pseudo random freeing to test list maintenance.
    180180     */
    181181    RTRAND hRand;
  • trunk/src/VBox/Runtime/testcase/tstRTPrfIO.cpp

    r32993 r33540  
    7373 * Benchmark an operation.
    7474 * @param   stmt        Statement to benchmark.
    75  * @param   what        String litteral describing what's being benchmarked..
     75 * @param   what        String literal describing what's being benchmarked..
    7676 */
    7777#define TIME_OP(stmt, what) \
  • trunk/src/VBox/Runtime/testcase/tstRTR0Common.h

    r32736 r33540  
    142142 *
    143143 * @param   expr            The expression to evaluate.
    144  * @param   DetailsArgs     Format string + arguments - in paranthesis.
     144 * @param   DetailsArgs     Format string + arguments - in parenthesis.
    145145 */
    146146#define RTR0TESTR0_CHECK_MSG(expr, DetailsArgs) \
  • trunk/src/VBox/Runtime/testcase/tstRTR0SemMutexDriver.cpp

    r28800 r33540  
    9393 * Performs a threaded test.
    9494 *
    95  * @returns true on succes, false on failure.
     95 * @returns true on success, false on failure.
    9696 * @param   enmSetup            The setup operation number.
    9797 * @param   enmDo               The do-it operation number.
  • trunk/src/VBox/Runtime/testcase/tstRTR0Timer.cpp

    r32757 r33540  
    167167 * Callback which changes the interval at each invocation.
    168168 *
    169  * The changes are goverened by TSTRTR0TIMERS1::ChangeInterval.  The callback
     169 * The changes are governed by TSTRTR0TIMERS1::ChangeInterval.  The callback
    170170 * calls RTTimerStop at iActionShot.
    171171 *
  • trunk/src/VBox/Runtime/testcase/tstRTTimeSpec.cpp

    r28800 r33540  
    309309
    310310    /*
    311      * Convertsions.
     311     * Conversions.
    312312     */
    313313#define CHECK_NSEC(Ts1, T2) \
  • trunk/src/VBox/Runtime/testcase/tstTSC.cpp

    r29250 r33540  
    200200
    201201    /*
    202      * Retry untill we get lucky (or give up).
     202     * Retry until we get lucky (or give up).
    203203     */
    204204    for (unsigned cTries = 0; ; cTries++)
  • trunk/src/VBox/Runtime/testcase/tstUtf8.cpp

    r31222 r33540  
    8383
    8484    /*
    85      * Test current CP convertion.
     85     * Test current CP conversion.
    8686     */
    8787    RTTestSub(hTest, "Rand UTF-16 -> UTF-8 -> CP -> UTF-8");
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

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