Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r83704:67b9e6084b96
Date: 2016-04-16 18:00 +0200
http://bitbucket.org/pypy/pypy/changeset/67b9e6084b96/

Log:    fix the detection code (probably) for ARM

diff --git a/rpython/jit/backend/test/runner_test.py 
b/rpython/jit/backend/test/runner_test.py
--- a/rpython/jit/backend/test/runner_test.py
+++ b/rpython/jit/backend/test/runner_test.py
@@ -4510,7 +4510,10 @@
                     continue
                 w = t[2].split()
                 if len(w) == 0:
-                    continue
+                    if '<UNDEFINED>' in line:
+                        w = ['UNDEFINED']
+                    else:
+                        continue
                 words.append(w[0] + ';')
                 print '[[%s]]' % (w[0],)
             text = ' '.join(words)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to