Beispiel #1
0
    def test_function(self):
        got = itanium_mangler.mangle("what", [int32, float32])
        expect = "_Z4whatif"
        self.assertEqual(expect, got)

        got = itanium_mangler.mangle("a_little_brown_fox",
                                     [uint64, uint32, float64])
        expect = "_Z18a_little_brown_foxyjd"
        self.assertEqual(expect, got)
Beispiel #2
0
    def test_function(self):
        got = itanium_mangler.mangle("what", [int32, float32])
        expect = "_Z4whatif"
        self.assertEqual(expect, got)

        got = itanium_mangler.mangle("a_little_brown_fox", [uint64,
                                                            uint32,
                                                            float64])
        expect = "_Z18a_little_brown_foxyjd"
        self.assertEqual(expect, got)
Beispiel #3
0
 def mangler(self, name, argtypes):
     return itanium_mangler.mangle(name, argtypes)
Beispiel #4
0
 def mangler(self, name, argtypes):
     return itanium_mangler.mangle(name, argtypes)