| Index: tests/trace_inputs_smoke_test.py
|
| diff --git a/tests/trace_inputs_smoke_test.py b/tests/trace_inputs_smoke_test.py
|
| index 773dc665db0238b571782fa9ea26f0ace8772be5..e6b54302fd7173f2388190a24d054e46eac822d0 100755
|
| --- a/tests/trace_inputs_smoke_test.py
|
| +++ b/tests/trace_inputs_smoke_test.py
|
| @@ -17,7 +17,7 @@ import unittest
|
| ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
| sys.path.insert(0, ROOT_DIR)
|
|
|
| -import run_test_cases
|
| +import run_isolated
|
| import trace_inputs
|
|
|
| FILENAME = os.path.basename(__file__)
|
| @@ -473,8 +473,7 @@ class TraceInputsImport(TraceInputsBase):
|
| resultcode, output = tracer.trace(cmd, cwd, tracename, True)
|
| return (tracename, resultcode, output)
|
|
|
| - progress = FakeProgress()
|
| - with run_test_cases.ThreadPool(progress, parallel, parallel, 0) as pool:
|
| + with run_isolated.ThreadPool(parallel, parallel, 0) as pool:
|
| api = trace_inputs.get_api()
|
| with api.get_tracer(self.log) as tracer:
|
| pool.add_task(
|
|
|