llvm-mc: Fix tests for python variations in int printing, sigh.

llvm-svn: 80069
diff --git a/llvm/test/Scripts/macho-dump b/llvm/test/Scripts/macho-dump
index 665399d..800015e 100755
--- a/llvm/test/Scripts/macho-dump
+++ b/llvm/test/Scripts/macho-dump
@@ -198,7 +198,7 @@
    print "  ('_indirect_symbols', ["
    for i in range(nindirectsyms):
       print "    # Indirect Symbol %r" % i
-      print "    (('symbol_index', %r),)," % f.read32()
+      print "    (('symbol_index', %#x),)," % f.read32()
    print "  ])"
       
    f.seek(prev_pos)