summaryrefslogtreecommitdiffstats
path: root/libcxx/test
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2014-08-23 04:02:21 +0000
committerEric Fiselier <eric@efcs.ca>2014-08-23 04:02:21 +0000
commit561dfb57fc3f370037f5e1eebb66a8c76ae9e794 (patch)
tree33384b4d96eda15d3328f31882d08f6c3f5d25f3 /libcxx/test
parent58e4ea904bf625ea621ccebd513f58496886f918 (diff)
downloadbcm5719-llvm-561dfb57fc3f370037f5e1eebb66a8c76ae9e794.tar.gz
bcm5719-llvm-561dfb57fc3f370037f5e1eebb66a8c76ae9e794.zip
Fix handling of format strings to work with python 2.6
llvm-svn: 216314
Diffstat (limited to 'libcxx/test')
-rw-r--r--libcxx/test/lit.cfg8
1 files changed, 4 insertions, 4 deletions
diff --git a/libcxx/test/lit.cfg b/libcxx/test/lit.cfg
index e37e641a958..4fc082a4eb4 100644
--- a/libcxx/test/lit.cfg
+++ b/libcxx/test/lit.cfg
@@ -307,9 +307,9 @@ class Configuration(object):
for feature, loc in locales[platform.system()].items():
try:
locale.setlocale(locale.LC_ALL, loc)
- self.config.available_features.add('locale.{}'.format(feature))
+ self.config.available_features.add('locale.{0}'.format(feature))
except:
- self.lit_config.warning('The locale {} is not supported by '
+ self.lit_config.warning('The locale {0} is not supported by '
'your platform. Some tests will be '
'unsupported.'.format(loc))
locale.setlocale(locale.LC_ALL, default_locale)
@@ -384,7 +384,7 @@ class Configuration(object):
if std is None:
std = 'c++11'
self.lit_config.note('using default std: \'-std=c++11\'')
- self.compile_flags += ['-std={}'.format(std)]
+ self.compile_flags += ['-std={0}'.format(std)]
self.config.available_features.add(std)
def configure_sanitizer(self):
@@ -401,7 +401,7 @@ class Configuration(object):
self.config.available_features.add('msan')
else:
self.lit_config.fatal('unsupported value for '
- 'libcxx_use_san: {}'.format(san))
+ 'libcxx_use_san: {0}'.format(san))
def configure_triple(self):
# Get or infer the target triple.
OpenPOWER on IntegriCloud