mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-19 19:45:40 -04:00

Summary: A lot of tests do this trick but the vast majority of them don't even call `print()`. Most of this patch was generated by a script that just looks at all the files and deletes the line if there is no `print (` or `print(` anywhere else in the file. I checked the remaining tests manually and deleted the import if we never call print (but instead do stuff like `expr print(...)` and similar false-positives). I also corrected the additional empty lines after the import in the files that I manually edited. Reviewers: JDevlieghere, labath, jfb Reviewed By: labath Subscribers: dexonsmith, wuzish, nemanjai, kbarton, christof, arphaman, abidh, lldb-commits Tags: #lldb Differential Revision: https://reviews.llvm.org/D71452
44 lines
1.5 KiB
Python
44 lines
1.5 KiB
Python
|
|
import json
|
|
import gdbremote_testcase
|
|
import lldbgdbserverutils
|
|
from lldbsuite.support import seven
|
|
from lldbsuite.test.decorators import *
|
|
from lldbsuite.test.lldbtest import *
|
|
from lldbsuite.test import lldbutil
|
|
|
|
|
|
class TestGdbRemoteModuleInfo(gdbremote_testcase.GdbRemoteTestCaseBase):
|
|
|
|
mydir = TestBase.compute_mydir(__file__)
|
|
|
|
def module_info(self):
|
|
procs = self.prep_debug_monitor_and_inferior()
|
|
self.add_process_info_collection_packets()
|
|
context = self.expect_gdbremote_sequence()
|
|
info = self.parse_process_info_response(context)
|
|
|
|
self.test_sequence.add_log_lines([
|
|
'read packet: $jModulesInfo:%s]#00' % json.dumps(
|
|
[{"file":lldbutil.append_to_process_working_directory(self, "a.out"),
|
|
"triple":seven.unhexlify(info["triple"])}]),
|
|
{"direction": "send",
|
|
"regex": r'^\$\[{(.*)}\]\]#[0-9A-Fa-f]{2}',
|
|
"capture": {1: "spec"}},
|
|
], True)
|
|
|
|
context = self.expect_gdbremote_sequence()
|
|
spec = context.get("spec")
|
|
self.assertRegexpMatches(spec, '"file_path":".*"')
|
|
self.assertRegexpMatches(spec, '"file_offset":\d+')
|
|
self.assertRegexpMatches(spec, '"file_size":\d+')
|
|
self.assertRegexpMatches(spec, '"triple":"\w*-\w*-.*"')
|
|
self.assertRegexpMatches(spec, '"uuid":"[A-Fa-f0-9]+"')
|
|
|
|
@llgs_test
|
|
def test_module_info(self):
|
|
self.init_llgs_test()
|
|
self.build()
|
|
self.set_inferior_startup_launch()
|
|
self.module_info()
|