[libFuzzer] Another follow up fix for Data Flow scripts in Py3.
authorMax Moroz <mmoroz@chromium.org>
Thu, 4 Apr 2019 22:55:18 +0000 (22:55 +0000)
committerMax Moroz <mmoroz@chromium.org>
Thu, 4 Apr 2019 22:55:18 +0000 (22:55 +0000)
Reviewers: Dor1s

Reviewed By: Dor1s

Subscribers: delcypher, #sanitizers, llvm-commits

Tags: #llvm, #sanitizers

Differential Revision: https://reviews.llvm.org/D60289

llvm-svn: 357732

compiler-rt/lib/fuzzer/scripts/merge_data_flow.py

index ba004ac..b442b89 100755 (executable)
@@ -18,7 +18,7 @@ def Merge(a, b):
   res = array('b')
   for i in range(0, len(a)):
     res.append(ord('1' if a[i] == '1' or b[i] == '1' else '0'))
-  return res.tostring()
+  return res.tostring().decode('utf-8')
 
 def main(argv):
   D = {}
@@ -29,7 +29,11 @@ def main(argv):
     else:
       D[F] = BV;
   for F in D.keys():
-    print("%s %s" % (F, str(D[F])))
+    if isinstance(D[F], str):
+      value = D[F]
+    else:
+      value = D[F].decode('utf-8')
+    print("%s %s" % (F, value))
 
 if __name__ == '__main__':
   main(sys.argv)