blob: afb02019672e950655be69b20441f6a89018e6bb (
plain)
1
2
3
4
5
6
7
8
9
|
from llvm.common import find_library
from llvm.object import ObjectFile
import unittest
class TestObjectFile(unittest.TestCase):
def test_create_from_file(self):
source = find_library()
of = ObjectFile(filename=source)
|