Skip to content

Commit

Permalink
[test] Fix number of iterations in InterpreterStress::stressSTLDict()
Browse files Browse the repository at this point in the history
  • Loading branch information
jalopezg-git authored and hahnjo committed Dec 12, 2023
1 parent be666f7 commit ff51641
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/stressInterpreter.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ bool InterpreterStress::stressSTLDict() {
using namespace std;

bool allres = true;
for (Int_t i = 1; i < fNtimes; ++i) {
for (Int_t i = 0; i < fNtimes; ++i) {
int res = 3;
TInterpreter::EErrorCode interpError = TInterpreter::kNoError;
TString cmd
Expand Down Expand Up @@ -257,7 +257,7 @@ bool InterpreterStress::stressSTLDict() {
}
}
#ifdef ClingWorkAroundDeletedSourceFile
for (Int_t i = 1; i < fNtimes; ++i) {
for (Int_t i = 0; i < fNtimes; ++i) {
TString tmpfilename = TString::Format("stressInterpreter_tmp%d.C", i);
gSystem->Unlink(tmpfilename);
}
Expand Down

0 comments on commit ff51641

Please sign in to comment.