feat: test
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
张泊明518370910136 2024-04-27 15:45:47 -04:00
parent 355a9f0d00
commit 83085ed38a
GPG Key ID: D47306D7062CDA9D
4 changed files with 7 additions and 2 deletions

4
.gitmodules vendored
View File

@ -18,3 +18,7 @@
path = examples/dummy/error path = examples/dummy/error
url = ssh://git@focs.ji.sjtu.edu.cn:2222/FOCS-dev/JOJ3-examples.git url = ssh://git@focs.ji.sjtu.edu.cn:2222/FOCS-dev/JOJ3-examples.git
branch = dummy/error branch = dummy/error
[submodule "examples/keyword/sillycode"]
path = examples/keyword/sillycode
url = ssh://git@focs.ji.sjtu.edu.cn:2222/FOCS-dev/JOJ3-examples.git
branch = keyword/sillycode

@ -1 +1 @@
Subproject commit e6504575379ef49c1495dc635f7aba36f57dddc8 Subproject commit a7001564a22f9807119efb7b8f4cf6f74d4c12fc

@ -0,0 +1 @@
Subproject commit 09cfdedda32061a03b4335e9a0f162c7891301c9

View File

@ -42,7 +42,7 @@ func Parse(executorResult stage.ExecutorResult, conf Conf) (
} }
} }
return stage.ParserResult{ return stage.ParserResult{
Score: min(score, conf.MinScore), Score: max(score, conf.MinScore),
Comment: comment, Comment: comment,
}, matched }, matched
} }