Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Cellule committed May 8, 2018
1 parent 8a457f1 commit 86320ce
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions bin/rl/rl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ BOOL FVerbose;
BOOL FQuiet;
BOOL FNoWarn;
BOOL FTest;
BOOL FStonOnError = FALSE;
BOOL FStopOnError = FALSE;
BOOL GStopDueToError = FALSE;
BOOL FLow;
BOOL FNoDelete;
Expand Down Expand Up @@ -2853,7 +2853,7 @@ ParseArg(
}
if (!_stricmp(&arg[1], "stoponerror"))
{
FStonOnError = TRUE;
FStopOnError = TRUE;
break;
}
if (!_stricmp(&arg[1], "exeflags")) {
Expand Down Expand Up @@ -3591,7 +3591,7 @@ GetTestInfoFromNode
{
// Validate the timeout string now to fail early so we don't run any tests when there is an error.
if (!IsTimeoutStringValid(testInfo->data[i])) {
CFG_ERROR_EX(fileName, node->LineNumber,
CFG_ERROR_EX(fileName, node->LineNumber,
"Invalid timeout specified. Cannot parse or too large.\n", NULL);
childNode->Dump();
return FALSE;
Expand Down Expand Up @@ -5083,7 +5083,7 @@ main(int argc, char *argv[])
if (status == PCS_ERROR)
{
exit(1);
}
}
else
{

Expand Down
2 changes: 1 addition & 1 deletion bin/rl/rl.h
Original file line number Diff line number Diff line change
Expand Up @@ -871,7 +871,7 @@ extern BOOL FParallel;
extern BOOL FSyncEnumDirs;
extern BOOL FNogpfnt;
extern BOOL FTest;
extern BOOL FStonOnError;
extern BOOL FStopOnError;
extern BOOL FAppendTestNameToExtraCCFlags;
extern BOOL FNoProgramOutput;
extern BOOL FOnlyAssertOutput;
Expand Down
4 changes: 2 additions & 2 deletions bin/rl/rlrun.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ int
}

//
// If the test is a JS test and we've passed in a custom config file,
// If the test is a JS test and we've passed in a custom config file,
// ignore all of the other flags and just pass the config file in
//
if (kind == TK_JSCRIPT && pTestVariant->testInfo.data[TIK_CUSTOM_CONFIG_FILE] != nullptr)
Expand Down Expand Up @@ -598,7 +598,7 @@ int
if (fDumpOutputFile) {
DumpFileToLog(full);
}
if (FStonOnError)
if (FStopOnError)
{
GStopDueToError = TRUE;
}
Expand Down

0 comments on commit 86320ce

Please sign in to comment.