[compiler-rt] r205319 - InstrProf: Turn on test for Linux
Duncan P. N. Exon Smith
dexonsmith at apple.com
Tue Apr 1 08:56:05 PDT 2014
Author: dexonsmith
Date: Tue Apr 1 10:56:05 2014
New Revision: 205319
URL: http://llvm.org/viewvc/llvm-project?rev=205319&view=rev
Log:
InstrProf: Turn on test for Linux
Enabling test/profile on Linux to get feedback from the buildbots. I'm
hoping this just works...
<rdar://problem/16458307>
Modified:
compiler-rt/trunk/test/profile/lit.cfg
Modified: compiler-rt/trunk/test/profile/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/profile/lit.cfg?rev=205319&r1=205318&r2=205319&view=diff
==============================================================================
--- compiler-rt/trunk/test/profile/lit.cfg (original)
+++ compiler-rt/trunk/test/profile/lit.cfg Tue Apr 1 10:56:05 2014
@@ -33,6 +33,5 @@ config.substitutions.append( ("%clang_pr
config.substitutions.append( ("%clang_profuse=", config.clang + " -fprofile-instr-use=") )
# Profile tests are currently supported on Linux and Darwin only.
-# TODO: change to: if config.host_os not in ['Linux', 'Darwin']:
-if config.host_os not in ['Darwin']:
+if config.host_os not in ['Linux', 'Darwin']:
config.unsupported = True
More information about the llvm-commits
mailing list