YJIT: Rename make yjit-smoke-test to make yjit-check (#14502)

This commit is contained in:
Takashi Kokubun 2025-09-10 10:58:49 -07:00 committed by GitHub
parent 3e4af886a4
commit 0dbaf7e981
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -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:

View File

@ -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