From b127f00b512ab528bddf9df1a866ec42c37933b5 Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Thu, 12 Apr 2012 00:55:57 +0000 Subject: [PATCH] Make the default architectures to run as both 64 and 32-bit. rdar://problem/11031264 llvm-svn: 154573 --- lldb/test/dotest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/dotest.py b/lldb/test/dotest.py index 4a2e1bf527bf..c01af3052f2c 100755 --- a/lldb/test/dotest.py +++ b/lldb/test/dotest.py @@ -101,7 +101,7 @@ config = {} # 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