about summary refs log tree commit diff
path: root/src/tools/compiletest
diff options
context:
space:
mode:
authorZalathar <Zalathar@users.noreply.github.com>2024-03-17 12:12:38 +1100
committerZalathar <Zalathar@users.noreply.github.com>2024-06-14 13:31:46 +1000
commit2646db92fe210df64f48a09d5eab3793f41dc9ce (patch)
tree159ea3e0da606330aee2d08db91c583c095fd1b6 /src/tools/compiletest
parent3f3b8bb1ca3fc4106fdbdc5106f3924db441a51a (diff)
downloadrust-2646db92fe210df64f48a09d5eab3793f41dc9ce.tar.gz
rust-2646db92fe210df64f48a09d5eab3793f41dc9ce.zip
Remove `//@ ignore-windows-gnu` from tests that need the profiler
The profiler runtime is no longer built in mingw test jobs, so these tests
should naturally be skipped by `//@ needs-profiler-support`.
Diffstat (limited to 'src/tools/compiletest')
-rw-r--r--src/tools/compiletest/src/header.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/tools/compiletest/src/header.rs b/src/tools/compiletest/src/header.rs
index cc972223f6d..65436a8a440 100644
--- a/src/tools/compiletest/src/header.rs
+++ b/src/tools/compiletest/src/header.rs
@@ -1023,9 +1023,6 @@ fn iter_header(
     if mode == Mode::CoverageRun {
         let extra_directives: &[&str] = &[
             "needs-profiler-support",
-            // FIXME(mati865): MinGW GCC miscompiles compiler-rt profiling library but with Clang it works
-            // properly. Since we only have GCC on the CI ignore the test for now.
-            "ignore-windows-gnu",
             // FIXME(pietroalbini): this test currently does not work on cross-compiled
             // targets because remote-test is not capable of sending back the *.profraw
             // files generated by the LLVM instrumentation.