Changeset 5881 in vbox
- Timestamp:
- Nov 29, 2007 5:33:08 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/tstTSC.cpp
r4071 r5881 112 112 && ApicId1 == ApicId3 113 113 && ApicId1 == ApicId4 114 && TSC3 - TSC1 < 1750 /* WARNING: This is just a guess, increase if it doesn't work for you. */114 && TSC3 - TSC1 < 2250 /* WARNING: This is just a guess, increase if it doesn't work for you. */ 115 115 && TSC2 - TSC1 < TSC3 - TSC1 116 116 ) … … 188 188 for (unsigned cTries = 0; ; cTries++) 189 189 { 190 if (cTries > 1024 )190 if (cTries > 10240) 191 191 { 192 192 RTPrintf("tstTSC: FAILURE - %d attempts, giving.\n", cTries); … … 265 265 && ApicId1 == ApicId5 266 266 && ApicId1 == ApicId6 267 && TSC5 - TSC1 < 2 000 /* WARNING: This is just a guess, increase if it doesn't work for you. */267 && TSC5 - TSC1 < 2750 /* WARNING: This is just a guess, increase if it doesn't work for you. */ 268 268 && TSC4 - TSC1 < TSC5 - TSC1 269 269 && TSC3 - TSC1 < TSC4 - TSC1
Note:
See TracChangeset
for help on using the changeset viewer.