File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ working directory.
11
11
./miri build <flags>:
12
12
Just build miri. <flags> are passed to `cargo build`.
13
13
14
+ ./miri check <flags>:
15
+ Just check miri. <flags> are passed to `cargo check`.
16
+
14
17
./miri test <flags>:
15
18
Build miri, set up a sysroot and then run the test suite. <flags> are passed
16
19
to the final `cargo test` invocation.
@@ -99,6 +102,10 @@ install|install-debug)
99
102
# "--offline" to avoid querying the registry (for yanked packages).
100
103
exec cargo install $CARGO_INSTALL_FLAGS --path " $( dirname " $0 " ) " --force --locked --offline " $@ "
101
104
;;
105
+ check|check-debug)
106
+ # Check, and let caller control flags.
107
+ exec cargo check $CARGO_BUILD_FLAGS " $@ "
108
+ ;;
102
109
build|build-debug)
103
110
# Build, and let caller control flags.
104
111
exec cargo build $CARGO_BUILD_FLAGS " $@ "
You can’t perform that action at this time.
0 commit comments