diff options
| author | Sean Callanan <scallanan@apple.com> | 2012-04-25 00:21:42 +0000 |
|---|---|---|
| committer | Sean Callanan <scallanan@apple.com> | 2012-04-25 00:21:42 +0000 |
| commit | 374bd0c9e5c5c180fcad01d029c0c61fecbf1377 (patch) | |
| tree | 750ddffd147966913700551557065e0b2be92021 | |
| parent | 45034810aa173a54d8e28c13f818c02bf7f5d2ee (diff) | |
| download | bcm5719-llvm-374bd0c9e5c5c180fcad01d029c0c61fecbf1377.tar.gz bcm5719-llvm-374bd0c9e5c5c180fcad01d029c0c61fecbf1377.zip | |
Made it safe to re-import a Python module, allowing
the same test to be run multiple times in the same
session.
llvm-svn: 155511
| -rw-r--r-- | lldb/test/expression_command/issue_11588/Test11588.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/expression_command/issue_11588/Test11588.py b/lldb/test/expression_command/issue_11588/Test11588.py index b4aea2dc65e..59393bb93a7 100644 --- a/lldb/test/expression_command/issue_11588/Test11588.py +++ b/lldb/test/expression_command/issue_11588/Test11588.py @@ -37,7 +37,7 @@ class Issue11581TestCase(TestBase): self.runCmd("next", RUN_SUCCEEDED) self.runCmd("next", RUN_SUCCEEDED) - self.runCmd("command script import s11588.py") + self.runCmd("command script import --allow-reload s11588.py") self.runCmd("type synthetic add --python-class s11588.Issue11581SyntheticProvider StgClosure") self.expect("print *((StgClosure*)(r14-1))", |

