| Index: scripts/master/factory/commands.py
|
| diff --git a/scripts/master/factory/commands.py b/scripts/master/factory/commands.py
|
| index 0a2cd15a0445af61dd991228caa2ece779440837..c62eedf10af5d48492b74d535c299a1223c90196 100644
|
| --- a/scripts/master/factory/commands.py
|
| +++ b/scripts/master/factory/commands.py
|
| @@ -135,6 +135,8 @@ class CompileWithRequiredSwarmTargets(shell.Compile):
|
| command = self.command
|
| swarm_tests = GetSwarmTestsFromTestFilter(test_filters)
|
| command.extend(swarm_test + '_run' for swarm_test in swarm_tests)
|
| + if 'compile' in test_filters:
|
| + command.append('all')
|
|
|
| self.setCommand(command)
|
| return shell.Compile.start(self)
|
|
|