Allow aggregate CONFIG on Command Line
This commit is contained in:
parent
fe670e5421
commit
8db2e8829f
@ -177,14 +177,26 @@ object TestGenerator extends App {
|
|||||||
val projectName = args(0)
|
val projectName = args(0)
|
||||||
val topModuleName = args(1)
|
val topModuleName = args(1)
|
||||||
val configClassName = args(2)
|
val configClassName = args(2)
|
||||||
val config = try {
|
|
||||||
Class.forName(s"$projectName.$configClassName").newInstance.asInstanceOf[Config]
|
val aggregateConfigs = configClassName.split('_').reverse
|
||||||
|
|
||||||
|
var finalConfig = new Config()
|
||||||
|
var ii = 0;
|
||||||
|
for (ii <- 0 to (aggregateConfigs.length - 1)) {
|
||||||
|
val currentConfigName = aggregateConfigs(ii);
|
||||||
|
val currentConfig = try {
|
||||||
|
Class.forName(s"$projectName.$currentConfigName").newInstance.asInstanceOf[Config]
|
||||||
} catch {
|
} catch {
|
||||||
case e: java.lang.ClassNotFoundException =>
|
case e: java.lang.ClassNotFoundException =>
|
||||||
throwException("Unable to find configClassName \"" + configClassName +
|
throwException("Unable to find part \"" + currentConfigName +
|
||||||
|
"\" of configClassName \"" + configClassName +
|
||||||
"\", did you misspell it?", e)
|
"\", did you misspell it?", e)
|
||||||
}
|
}
|
||||||
val world = config.toInstance
|
finalConfig = currentConfig ++ finalConfig
|
||||||
|
}
|
||||||
|
|
||||||
|
val world = (new Config(finalConfig)).toInstance
|
||||||
|
|
||||||
val paramsFromConfig: Parameters = Parameters.root(world)
|
val paramsFromConfig: Parameters = Parameters.root(world)
|
||||||
|
|
||||||
val gen = () =>
|
val gen = () =>
|
||||||
|
Loading…
Reference in New Issue
Block a user