diff options
| author | Manuel Drehwald <git@manuel.drehwald.info> | 2024-09-29 18:27:33 -0400 |
|---|---|---|
| committer | Manuel Drehwald <git@manuel.drehwald.info> | 2024-09-29 18:27:33 -0400 |
| commit | bc2a913a9bb89b137a43cc761793ae70886dfd14 (patch) | |
| tree | d0f3b5123b1556e5f3b08f000fd7a1a0f5b199f7 /src/bootstrap | |
| parent | 42ff2eedb0585e32e3e8da0e83ff82dd49987a2c (diff) | |
| download | rust-bc2a913a9bb89b137a43cc761793ae70886dfd14.tar.gz rust-bc2a913a9bb89b137a43cc761793ae70886dfd14.zip | |
add has_enzyme/needs-enzyme to the test infra
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/src/core/build_steps/test.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/bootstrap/src/core/build_steps/test.rs b/src/bootstrap/src/core/build_steps/test.rs index 870fe6a9f16..7283b0e9574 100644 --- a/src/bootstrap/src/core/build_steps/test.rs +++ b/src/bootstrap/src/core/build_steps/test.rs @@ -1792,6 +1792,10 @@ NOTE: if you're sure you want to do this, please open an issue as to why. In the cmd.arg("--host").arg(&*compiler.host.triple); cmd.arg("--llvm-filecheck").arg(builder.llvm_filecheck(builder.config.build)); + if builder.build.config.llvm_enzyme { + cmd.arg("--has-enzyme"); + } + if builder.config.cmd.bless() { cmd.arg("--bless"); } |
