mirror of
https://github.com/JakeHillion/drgn.git
synced 2024-12-22 17:23:06 +00:00
87b7292aa5
drgn is currently licensed as GPLv3+. Part of the long term vision for drgn is that other projects can use it as a library providing programmatic interfaces for debugger functionality. A more permissive license is better suited to this goal. We decided on LGPLv2.1+ as a good balance between software freedom and permissiveness. All contributors not employed by Meta were contacted via email and consented to the license change. The only exception was the author of commitc4fbf7e589
("libdrgn: fix for compilation error"), who did not respond. That commit reverted a single line of code to one originally written by me in commit640b1c011d
("libdrgn: embed DWARF index in DWARF info cache"). Signed-off-by: Omar Sandoval <osandov@osandov.com>
99 lines
2.6 KiB
Python
99 lines
2.6 KiB
Python
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
import os
|
|
import os.path
|
|
import subprocess
|
|
import tempfile
|
|
import unittest
|
|
|
|
from drgn import Program
|
|
from tests import TestCase
|
|
|
|
|
|
class TestLive(TestCase):
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
cls.prog = Program()
|
|
cls.prog.set_pid(os.getpid())
|
|
|
|
def test_threads(self):
|
|
tids = [thread.tid for thread in self.prog.threads()]
|
|
self.assertIn(os.getpid(), tids)
|
|
for tid in tids:
|
|
self.assertEqual(self.prog.thread(tid).tid, tid)
|
|
|
|
def test_thread_not_found(self):
|
|
self.assertRaises(LookupError, self.prog.thread, 1)
|
|
|
|
def test_main_thread(self):
|
|
self.assertEqual(self.prog.main_thread().tid, os.getpid())
|
|
|
|
def test_crashed_thread(self):
|
|
self.assertRaisesRegex(
|
|
ValueError,
|
|
"crashed thread is only defined for core dumps",
|
|
self.prog.crashed_thread,
|
|
)
|
|
|
|
|
|
class TestCoreDump(TestCase):
|
|
TIDS = (
|
|
2265413,
|
|
2265414,
|
|
2265415,
|
|
2265416,
|
|
2265417,
|
|
2265418,
|
|
2265419,
|
|
2265420,
|
|
2265421,
|
|
2265422,
|
|
2265423,
|
|
2265424,
|
|
2265425,
|
|
)
|
|
|
|
MAIN_TID = 2265413
|
|
CRASHED_TID = 2265419
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
super().setUpClass()
|
|
with tempfile.NamedTemporaryFile() as core_dump_file:
|
|
try:
|
|
subprocess.check_call(
|
|
[
|
|
"zstd",
|
|
"--quiet",
|
|
"--force",
|
|
"--decompress",
|
|
"--stdout",
|
|
os.path.join(os.path.dirname(__file__), "sample.coredump.zst"),
|
|
],
|
|
stdout=core_dump_file,
|
|
)
|
|
except FileNotFoundError:
|
|
raise unittest.SkipTest("zstd not found")
|
|
cls.prog = Program()
|
|
cls.prog.set_core_dump(core_dump_file.name)
|
|
|
|
def test_threads(self):
|
|
self.assertSequenceEqual(
|
|
sorted(thread.tid for thread in self.prog.threads()),
|
|
self.TIDS,
|
|
)
|
|
|
|
def test_thread(self):
|
|
for tid in self.TIDS:
|
|
self.assertEqual(self.prog.thread(tid).tid, tid)
|
|
|
|
def test_thread_not_found(self):
|
|
self.assertRaises(LookupError, self.prog.thread, 99)
|
|
|
|
def test_main_thread(self):
|
|
self.assertEqual(self.prog.main_thread().tid, self.MAIN_TID)
|
|
|
|
def test_crashed_thread(self):
|
|
self.assertEqual(self.prog.crashed_thread().tid, self.CRASHED_TID)
|