summaryrefslogtreecommitdiff
path: root/test/profile/CMakeLists.txt
AgeCommit message (Collapse)Author
2016-11-29[sanitizer] Add macOS minimum deployment target to all compiler invocations ↵Kuba Mracek
in lit tests The Clang driver on macOS decides the deployment target based on various things, like your host OS version, the SDK version and some environment variables, which makes lit tests pass or fail based on your environment. Let's make sure we run all lit tests with `-mmacosx-version-min=${SANITIZER_MIN_OSX_VERSION}` (10.9 unless overriden). Differential Revision: https://reviews.llvm.org/D26929 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@288186 91177308-0d34-0410-b5e6-96231b3b80d8
2016-07-11[compiler-rt] Fix VisualStudio virtual folders layoutEtienne Bergeron
Summary: This patch is a refactoring of the way cmake 'targets' are grouped. It won't affect non-UI cmake-generators. Clang/LLVM are using a structured way to group targets which ease navigation through Visual Studio UI. The Compiler-RT projects differ from the way Clang/LLVM are grouping targets. This patch doesn't contain behavior changes. Reviewers: kubabrecka, rnk Subscribers: wang0109, llvm-commits, kubabrecka, chrisha Differential Revision: http://reviews.llvm.org/D21952 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@275111 91177308-0d34-0410-b5e6-96231b3b80d8
2016-03-25[profile] Add integration test to validate PGO function namesVedant Kumar
Differential Revision: http://reviews.llvm.org/D18485 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@264480 91177308-0d34-0410-b5e6-96231b3b80d8
2016-02-19[PGO] Enable profile-rt testing on all supported targetsXinliang David Li
Differential Revision: http://reviews.llvm.org/D17361 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@261344 91177308-0d34-0410-b5e6-96231b3b80d8
2014-04-01InstrProfile: Use SANITIZER_COMMON_LIT_TEST_DEPSDuncan P. N. Exon Smith
Take advantage of the SANITIZER_COMMON_LIT_TEST_DEPS variable. <rdar://problem/16458307> git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@205321 91177308-0d34-0410-b5e6-96231b3b80d8
2014-03-31InstrProf: lit.cfg magic for running tests from sourceDuncan P. N. Exon Smith
Implement magic in compiler-rt to enable llvm-lit to be invoked on the source tree in lib/profile. This relies on a paired commit in the llvm tree that exposes a new built-in parameter. <rdar://problem/16458307> git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@205263 91177308-0d34-0410-b5e6-96231b3b80d8
2014-03-31InstrProf: Add simple compiler-rt testDuncan P. N. Exon Smith
Add the test infrastructure for testing lib/profile and a single test. This initial commit only enables the tests on Darwin, but they'll be enabled on Linux soon after. <rdar://problem/16458307> git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@205256 91177308-0d34-0410-b5e6-96231b3b80d8