Skip to content

Commit 5cde272

Browse files
adpaco-awstedinski
authored andcommitted
Rename cbmc test suite (now rmc) (#526)
1 parent d1e3dd5 commit 5cde272

File tree

220 files changed

+10
-10
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

220 files changed

+10
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions

rustfmt.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ignore = [
1515
# (and generally rustfmt can move around comments in UI-testing incompatible ways)
1616
"src/test/*",
1717
"!src/test/cargo-rmc",
18-
"!src/test/cbmc",
18+
"!src/test/rmc",
1919
"!src/test/expected",
2020
"!src/test/firecracker",
2121
"!src/test/prusti",

scripts/rmc-regression.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ check-cbmc-viewer-version.py --major 2 --minor 5
2222

2323
# Standalone rmc tests, expected tests, and cargo tests
2424
./x.py build -i --stage 1 library/std ${EXTRA_X_PY_BUILD_ARGS}
25-
./x.py test -i --stage 1 cbmc firecracker prusti smack expected cargo-rmc
26-
./x.py test -i --stage 0 compiler/rustc_codegen_llvm
25+
./x.py test -i --stage 1 rmc firecracker prusti smack expected cargo-rmc
26+
./x.py test -i --stage 0 compiler/cbmc
2727

2828
# Check codegen for the standard library
2929
$SCRIPT_DIR/std-lib-regression.sh

scripts/run-clang-format.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ export PATH=$SCRIPT_DIR:$PATH
2424
RMC_DIR=$SCRIPT_DIR/..
2525

2626
find $RMC_DIR/library/rmc -name "*.c" | xargs clang-format $FLAGS
27-
find $RMC_DIR/src/test/cbmc -name "*.c" | xargs clang-format $FLAGS
27+
find $RMC_DIR/src/test/rmc -name "*.c" | xargs clang-format $FLAGS
2828
find $RMC_DIR/src/test/cargo-rmc -name "*.c" | xargs clang-format $FLAGS
2929

src/bootstrap/builder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ impl<'a> Builder<'a> {
464464
// Run bootstrap close to the end as it's unlikely to fail
465465
test::Bootstrap,
466466
// RMC regression tests
467-
test::CBMC,
467+
test::RMC,
468468
test::Firecracker,
469469
test::Prusti,
470470
test::Serial,

src/bootstrap/test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1205,7 +1205,7 @@ host_test!(RunMakeFullDeps {
12051205

12061206
default_test!(Assembly { path: "src/test/assembly", mode: "assembly", suite: "assembly" });
12071207

1208-
default_test!(CBMC { path: "src/test/cbmc", mode: "rmc", suite: "cbmc" });
1208+
default_test!(RMC { path: "src/test/rmc", mode: "rmc", suite: "rmc" });
12091209

12101210
default_test!(Firecracker { path: "src/test/firecracker", mode: "rmc", suite: "firecracker" });
12111211

src/test/expected/unwind_tip/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
include!("../../rmc-prelude.rs");
77

88
// This example is a copy of the `cbmc` test in
9-
// `src/test/cbmc/LoopLoop_NonReturning/main_no_unwind_asserts.rs`
9+
// `src/test/rmc/LoopLoop_NonReturning/main_no_unwind_asserts.rs`
1010
//
1111
// The verification output should show an unwinding assertion failure.
1212
//
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)