diff options
author | Jim Ingham <jingham@apple.com> | 2018-03-28 17:06:23 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2018-03-28 17:06:23 +0000 |
commit | 3eb39766bbbf73318e08f1eaaea92c73239094ff (patch) | |
tree | e1667b724a2ce8ea7d01e48b869c0acfcca76b30 /lldb/packages/Python/lldbsuite/test/lang/cpp/trivial_abi | |
parent | 7237e0cf39559b4f080a646016282fcd4e2515fe (diff) | |
download | bcm5719-llvm-3eb39766bbbf73318e08f1eaaea92c73239094ff.tar.gz bcm5719-llvm-3eb39766bbbf73318e08f1eaaea92c73239094ff.zip |
Explicitly import subprocess
For some reason on one of our bots subprocess wasn't already
imported. Do so explicitly.
llvm-svn: 328715
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp/trivial_abi')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/TestTrivialABI.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/TestTrivialABI.py b/lldb/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/TestTrivialABI.py index 34ab00e1dc8..8666b25a0ce 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/TestTrivialABI.py +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/TestTrivialABI.py @@ -9,6 +9,7 @@ import os import time import re import lldb +import subprocess import lldbsuite.test.lldbutil as lldbutil from lldbsuite.test.lldbtest import * from lldbsuite.test import decorators |