auto batch set problem case's expected file that has "ans" as the suffix

This commit is contained in:
Roy Qu 2022-04-26 22:08:46 +08:00
parent e7db1a3a6f
commit 97274a7e79
1 changed files with 16 additions and 4 deletions

View File

@ -3288,9 +3288,15 @@ void MainWindow::onProblemBatchSetCases()
problemCase->name = QFileInfo(filename).baseName();
problemCase->testState = ProblemCaseTestState::NotTested;
problemCase->inputFileName = filename;
QString expectedFileName = filename.mid(0,filename.length()-2)+"out";
QString expectedFileName;
expectedFileName = filename.mid(0,filename.length()-2)+"ans";
if (fileExists(expectedFileName)) {
problemCase->expectedOutputFileName = expectedFileName;
} else {
expectedFileName = filename.mid(0,filename.length()-2)+"out";
if (fileExists(expectedFileName))
problemCase->expectedOutputFileName = expectedFileName;
}
mOJProblemModel.addCase(problemCase);
}
}
@ -7545,10 +7551,16 @@ void MainWindow::on_btnProblemCaseInputFileName_clicked()
if (problemCase->expectedOutputFileName.isEmpty()
&& problemCase->expected.isEmpty()
&& QFileInfo(fileName).suffix()=="in") {
QString expectedFileName = fileName.mid(0,fileName.length()-2)+"out";
QString expectedFileName;
expectedFileName = fileName.mid(0,fileName.length()-2)+"ans";
if (fileExists(expectedFileName)) {
problemCase->expectedOutputFileName = expectedFileName;
} else {
expectedFileName = fileName.mid(0,fileName.length()-2)+"out";
if (fileExists(expectedFileName))
problemCase->expectedOutputFileName = expectedFileName;
}
}
fillProblemCaseInputAndExpected(problemCase);
}
}