summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2025-09-10 10:58:49 -0700
committerGitHub <noreply@github.com>2025-09-10 10:58:49 -0700
commit0dbaf7e981081eee5665a4144b500efd6da4208b (patch)
treebac30a3c526e8220adcc2f6cb52559a068c67ba0
parent3e4af886a45ca52bd410109abe0a9afef5c5a111 (diff)
YJIT: Rename `make yjit-smoke-test` to `make yjit-check` (#14502)
-rw-r--r--doc/yjit/yjit.md2
-rw-r--r--yjit/yjit.mk4
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