Skip to content

Commit 7757e0c

Browse files
authored
Re-enable c2rust-analyze tests in CI (#771)
- Fixes #608. Depends on: - #770 - #799 Once #770 lands, `FileCheck` will be installed everywhere, so we can finally re-enable the `c2rust-analyze` tests, which use `FileCheck`, in CI. This is getting increasingly important as we more rapidly work on `c2rust-analyze`.
2 parents e50d48e + 6b5ae97 commit 7757e0c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
export CARGO_HOME=$AGENT_TEMPDIRECTORY/.cargo
8787
export RUSTFLAGS="-D warnings"
8888
export RUSTDOCFLAGS="-D warnings"
89-
cargo test --release --exclude c2rust-analyze --workspace
89+
cargo test --release --workspace
9090
displayName: 'cargo test'
9191
9292
- script: |
@@ -150,7 +150,7 @@ jobs:
150150
export LLVM_CONFIG_PATH=$(brew --prefix llvm)/bin/llvm-config
151151
export RUSTFLAGS="-D warnings"
152152
export RUSTDOCFLAGS="-D warnings"
153-
cargo test --release --exclude c2rust-analyze --workspace
153+
cargo test --release --workspace
154154
displayName: 'cargo test'
155155
156156
- script: |

scripts/run_ci_checks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ build() {
3737
}
3838

3939
test() {
40-
cargo test --release --exclude c2rust-analyze --workspace
40+
cargo test --release --workspace
4141
}
4242

4343
# `test_translator.py` compiles translated code,

0 commit comments

Comments
 (0)