forked from OSchip/llvm-project
[libc][NFC] Fix typo in milliseconds
This commit is contained in:
parent
78957bab55
commit
0e1e9b9a81
|
@ -261,7 +261,7 @@ bool Test::testProcessKilled(RunContext &Ctx, testutils::FunctionCaller *Func,
|
|||
if (Result.timedOut()) {
|
||||
Ctx.markFail();
|
||||
llvm::outs() << File << ":" << Line << ": FAILURE\n"
|
||||
<< "Process timed out after " << 500 << " miliseconds.\n";
|
||||
<< "Process timed out after " << 500 << " milliseconds.\n";
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -305,7 +305,7 @@ bool Test::testProcessExits(RunContext &Ctx, testutils::FunctionCaller *Func,
|
|||
if (Result.timedOut()) {
|
||||
Ctx.markFail();
|
||||
llvm::outs() << File << ":" << Line << ": FAILURE\n"
|
||||
<< "Process timed out after " << 500 << " miliseconds.\n";
|
||||
<< "Process timed out after " << 500 << " milliseconds.\n";
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue