InstrProf: Turn on test for Linux
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>
Tue, 1 Apr 2014 15:56:05 +0000 (15:56 +0000)
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>
Tue, 1 Apr 2014 15:56:05 +0000 (15:56 +0000)
Enabling test/profile on Linux to get feedback from the buildbots.  I'm
hoping this just works...

<rdar://problem/16458307>

llvm-svn: 205319

compiler-rt/test/profile/lit.cfg

index f3ce966af2edad2bb8634a3ea504aeef0b9ecb66..dcfd36e6ff36e2165041498c59f3b16eaa7398f4 100644 (file)
@@ -33,6 +33,5 @@ config.substitutions.append( ("%clang_profgen ", config.clang + " -fprofile-inst
 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