aboutsummaryrefslogtreecommitdiff
path: root/compiler-rt/test/ctx_profile/lit.cfg.py
AgeCommit message (Collapse)AuthorFilesLines
2024-05-17Reapply "[ctx_profile] Integration test (#92456)"Mircea Trofin1-0/+4
This reverts commit 881f20e958e80bd30463fc57d2d3e891bcb8a571. Passing -ldl -lpthread explicitly
2024-05-17Revert "[ctx_profile] Integration test (#92456)"Aiden Grossman1-4/+0
This reverts commit 487d5af6482ea5f074c12d29d7e376d3fc697706. This was causing failures on some buildbots. https://lab.llvm.org/buildbot/#/builders/247/builds/18559
2024-05-17[ctx_profile] Integration test (#92456)Mircea Trofin1-0/+4
Compile with clang a program that's instrumented for contextual profiling and verify a profile can be collected.
2024-05-09[ctx_profile] Pull `ContextNode` in a `.inc` file (#91669)Mircea Trofin1-0/+31
This pulls out `ContextNode` as we need to use it pretty much as-is to implement a writer. The writer will be implemented on the LLVM side because it takes a dependency on BitStreamWriter. Since we can't reuse a header between compiler-rt and llvm, we use a header file which is copied on both sides, and test that the 2 copies are identical. The changes adds the necessary other stuff for compiler-rt/ctx_profile testing.