[tests] If no explicit target triple is given, try to infer it.
authorDaniel Dunbar <daniel@zuster.org>
Tue, 5 Feb 2013 22:28:03 +0000 (22:28 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Tue, 5 Feb 2013 22:28:03 +0000 (22:28 +0000)
llvm-svn: 174454

libcxx/test/lit.cfg

index 862a1bf..0c74a7d 100644 (file)
@@ -276,8 +276,13 @@ config.test_format = LibcxxTestFormat(
     ld_flags = ['-nodefaultlibs'] + library_paths + ['-lc++'] + libraries,
     exec_env = exec_env)
 
-config.target_triple = lit.params.get(
-    'target_triple', 'unknown-unknown-unknown')
+# Get or infer the target triple.
+config.target_triple = lit.params.get('target_triple', None)
+# If no target triple was given, try to infer it from the compiler under test.
+if config.target_triple is None:
+    config.target_triple = lit.util.capture(
+        [cxx_under_test, '-dumpmachine']).strip()
+    lit.note("inferred target triple as: %r" % (config.target_triple,))
 
 # Write an "available feature" that combines the triple when use_system_lib is
 # enabled. This is so that we can easily write XFAIL markers for tests that are