Adjusting builder to run tests on libraries configurations

This commit is contained in:
Anton Gushcha 2015-02-26 20:32:15 +03:00
parent fa94e9bbf9
commit f2aa2d5426
1 changed files with 5 additions and 1 deletions

View File

@ -64,7 +64,11 @@ class Builder : BackgroundOperationWatcher {
} else if (_buildOp == BuildOperation.Clean) {
params ~= "clean".dup;
} else if (_buildOp == BuildOperation.Run) {
params ~= "run".dup;
if (_projectConfig.type == ProjectConfiguration.Type.Library) {
params ~= "test".dup;
} else {
params ~= "run".dup;
}
} else if (_buildOp == BuildOperation.Upgrade) {
params ~= "upgrade".dup;
params ~= "--force-remove".dup;