From 0dbaf7e981081eee5665a4144b500efd6da4208b Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Wed, 10 Sep 2025 10:58:49 -0700 Subject: [PATCH] YJIT: Rename `make yjit-smoke-test` to `make yjit-check` (#14502) --- doc/yjit/yjit.md | 2 +- yjit/yjit.mk | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/yjit/yjit.md b/doc/yjit/yjit.md index 0024c780b9..73db723710 100644 --- a/doc/yjit/yjit.md +++ b/doc/yjit/yjit.md @@ -388,7 +388,7 @@ There are multiple test suites: - `make test-all` - `make test-spec` - `make check` runs all of the above -- `make yjit-smoke-test` runs quick checks to see that YJIT is working correctly +- `make yjit-check` runs quick checks to see that YJIT is working correctly The tests can be run in parallel like this: diff --git a/yjit/yjit.mk b/yjit/yjit.mk index 39587928d4..6b22a15960 100644 --- a/yjit/yjit.mk +++ b/yjit/yjit.mk @@ -34,8 +34,8 @@ endif RUST_VERSION = +1.58.0 # Gives quick feedback about YJIT. Not a replacement for a full test run. -.PHONY: yjit-smoke-test -yjit-smoke-test: +.PHONY: yjit-check +yjit-check: ifneq ($(strip $(CARGO)),) $(CARGO) test --all-features -q --manifest-path='$(top_srcdir)/yjit/Cargo.toml' endif