Skip to content

Commit

Permalink
genJson: Add indirection so the task can define comp/execParams
Browse files Browse the repository at this point in the history
  • Loading branch information
mblockelet committed May 12, 2018
1 parent 0c68232 commit 5fdcd69
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tools/genJson/genJson.py
Expand Up @@ -397,17 +397,19 @@ def genDefaultParams(taskPath, taskSettings):
'content': '@solutionContent'}],
'dependencies': '@solutionDependencies'
},
'compilationExecution': '@defaultSolutionCompParams'
'compilationExecution': '@defaultSolutionCompParamsTask'
}],
'defaultEvaluationExecutions': [{
'id': '@solutionExecId',
'idSolution': '@solutionId',
'filterTests': '@solutionFilterTests',
'noFeedbackTests': '@defaultNoFeedbackTests',
'runExecution': '@defaultSolutionExecParams'
'runExecution': '@defaultSolutionExecParamsTask'
}],

'defaultNoFeedbackTests': ['*.nofeedback.in'],
'defaultSolutionCompParamsTask': '@defaultSolutionCompParams',
'defaultSolutionExecParamsTask': '@defaultSolutionExecParams',
'defaultSolutionCompParams': CFG_TESTSOLPARAMS,
'defaultSolutionExecParams': CFG_TESTSOLPARAMS,

Expand Down

0 comments on commit 5fdcd69

Please sign in to comment.