Skip to content

Commit

Permalink
Add support for when a program which uses multiprocessing has been fr…
Browse files Browse the repository at this point in the history
…ozen to produce a Windows executable
  • Loading branch information
PrzemekWirkus committed Mar 14, 2016
1 parent c925a64 commit 95d59cb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mbed_host_tests/mbedhtrun.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
Author: Przemyslaw Wirkus <[email protected]>
"""

from multiprocessing import freeze_support
from mbed_host_tests import init_host_test_cli_params
from mbed_host_tests.host_tests_runner.host_test_default import DefaultTestSelector

Expand All @@ -26,6 +27,7 @@ def main():
@details 1. Create DefaultTestSelector object and pass command line parameters
2. Call default test execution function run() to start test instrumentation
"""
freeze_support()
result = -2
test_selector = DefaultTestSelector(init_host_test_cli_params())
try:
Expand Down

0 comments on commit 95d59cb

Please sign in to comment.