[Lldb-commits] [lldb] r234164 - test: Add amd64 architecture alias for x86_64

Ed Maste emaste at freebsd.org
Mon Apr 6 08:23:21 PDT 2015


Author: emaste
Date: Mon Apr  6 10:23:21 2015
New Revision: 234164

URL: http://llvm.org/viewvc/llvm-project?rev=234164&view=rev
Log:
test: Add amd64 architecture alias for x86_64

64-bit x86 is called amd64 on FreeBSD.

Modified:
    lldb/trunk/test/lldbplatformutil.py

Modified: lldb/trunk/test/lldbplatformutil.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lldbplatformutil.py?rev=234164&r1=234163&r2=234164&view=diff
==============================================================================
--- lldb/trunk/test/lldbplatformutil.py (original)
+++ lldb/trunk/test/lldbplatformutil.py Mon Apr  6 10:23:21 2015
@@ -2,7 +2,7 @@
 architecture and/or the platform dependent nature of the tests. """
 
 def check_first_register_readable(test_case):
-    if test_case.getArchitecture() in ['x86_64', 'i386']:
+    if test_case.getArchitecture() in ['amd64', 'x86_64', 'i386']:
         test_case.expect("register read eax", substrs = ['eax = 0x'])
     elif test_case.getArchitecture() in ['aarch64']:
         test_case.expect("register read x0", substrs = ['x0 = 0x'])





More information about the lldb-commits mailing list