Skip to content

Commit 2f06bb1

Browse files
authored
Rename needs-profiler-support to needs-profiler-runtime (#2095)
1 parent 971f809 commit 2f06bb1

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

src/llvm-coverage-instrumentation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ These tests compile and run a test program with coverage
317317
instrumentation, then use LLVM tools to convert the coverage data into a
318318
human-readable coverage report.
319319

320-
> Tests in `coverage-run` mode have an implicit `// needs-profiler-support`
320+
> Tests in `coverage-run` mode have an implicit `//@ needs-profiler-runtime`
321321
> directive, so they will be skipped if the profiler runtime has not been
322322
> [enabled in `config.toml`](#recommended-configtoml-settings).
323323

src/tests/compiletest.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ also registered as an additional prefix for FileCheck directives:
676676
```rust,ignore
677677
//@ revisions: NORMAL COVERAGE
678678
//@[COVERAGE] compile-flags: -Cinstrument-coverage
679-
//@[COVERAGE] needs-profiler-support
679+
//@[COVERAGE] needs-profiler-runtime
680680
681681
// COVERAGE: @__llvm_coverage_mapping
682682
// NORMAL-NOT: @__llvm_coverage_mapping

src/tests/directives.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,9 @@ settings:
153153

154154
- `needs-asm-support` — ignores if it is running on a target that doesn't have
155155
stable support for `asm!`
156-
- `needs-profiler-support` — ignores if profiler support was not enabled for the
157-
target (`profiler = true` in rustc's `config.toml`)
156+
- `needs-profiler-runtime` — ignores the test if the profiler runtime was not
157+
enabled for the target
158+
(`build.profiler = true` in rustc's `config.toml`)
158159
- `needs-sanitizer-support` — ignores if the sanitizer support was not enabled
159160
for the target (`sanitizers = true` in rustc's `config.toml`)
160161
- `needs-sanitizer-{address,hwaddress,leak,memory,thread}` — ignores if the

0 commit comments

Comments
 (0)