diff options
Diffstat (limited to 'lldb/test/arm_emulation/TestEmulations.py')
-rw-r--r-- | lldb/test/arm_emulation/TestEmulations.py | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/lldb/test/arm_emulation/TestEmulations.py b/lldb/test/arm_emulation/TestEmulations.py index 0bd36f05a94..ec37760f5d4 100644 --- a/lldb/test/arm_emulation/TestEmulations.py +++ b/lldb/test/arm_emulation/TestEmulations.py @@ -2,8 +2,9 @@ Test some ARM instruction emulation. """ +import lldb_shared + import os, time -import unittest2 import lldb from lldbtest import * @@ -49,10 +50,3 @@ class ARMEmulationTestCase(TestBase): print output self.assertTrue (success, 'Emulation test succeeded.') - -if __name__ == '__main__': - import atexit - lldb.SBDebugger.Initialize() - atexit.register(lambda: lldb.SBDebugger.Terminate()) - unittest2.main() - |