[Lldb-commits] [lldb] r154573 - /lldb/trunk/test/dotest.py
Johnny Chen
johnny.chen at apple.com
Wed Apr 11 17:55:57 PDT 2012
Author: johnny
Date: Wed Apr 11 19:55:57 2012
New Revision: 154573
URL: http://llvm.org/viewvc/llvm-project?rev=154573&view=rev
Log:
Make the default architectures to run as both 64 and 32-bit.
rdar://problem/11031264
Modified:
lldb/trunk/test/dotest.py
Modified: lldb/trunk/test/dotest.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/dotest.py?rev=154573&r1=154572&r2=154573&view=diff
==============================================================================
--- lldb/trunk/test/dotest.py (original)
+++ lldb/trunk/test/dotest.py Wed Apr 11 19:55:57 2012
@@ -101,7 +101,7 @@
# with the command line overriding the configFile. When specified, they should be
# of the list type. For example, "-A x86_64^i386" => archs=['x86_64', 'i386'] and
# "-C gcc^clang" => compilers=['gcc', 'clang'].
-archs = ['x86_64']
+archs = ['x86_64', 'i386']
compilers = ['clang']
# The arch might dictate some specific CFLAGS to be passed to the toolchain to build
More information about the lldb-commits
mailing list