From 48e24c7355d4cf3fccea59d3542c9e91830d39ac Mon Sep 17 00:00:00 2001 From: "Duncan P. N. Exon Smith" Date: Tue, 1 Apr 2014 15:56:05 +0000 Subject: [PATCH] InstrProf: Turn on test for Linux Enabling test/profile on Linux to get feedback from the buildbots. I'm hoping this just works... llvm-svn: 205319 --- compiler-rt/test/profile/lit.cfg | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/compiler-rt/test/profile/lit.cfg b/compiler-rt/test/profile/lit.cfg index f3ce966af2ed..dcfd36e6ff36 100644 --- a/compiler-rt/test/profile/lit.cfg +++ b/compiler-rt/test/profile/lit.cfg @@ -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 -- 2.34.1