Skip to content

Commit 0dbaf7e

Browse files
authored
YJIT: Rename make yjit-smoke-test to make yjit-check (ruby#14502)
1 parent 3e4af88 commit 0dbaf7e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/yjit/yjit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ There are multiple test suites:
388388
- `make test-all`
389389
- `make test-spec`
390390
- `make check` runs all of the above
391-
- `make yjit-smoke-test` runs quick checks to see that YJIT is working correctly
391+
- `make yjit-check` runs quick checks to see that YJIT is working correctly
392392

393393
The tests can be run in parallel like this:
394394

yjit/yjit.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ endif
3434
RUST_VERSION = +1.58.0
3535

3636
# Gives quick feedback about YJIT. Not a replacement for a full test run.
37-
.PHONY: yjit-smoke-test
38-
yjit-smoke-test:
37+
.PHONY: yjit-check
38+
yjit-check:
3939
ifneq ($(strip $(CARGO)),)
4040
$(CARGO) test --all-features -q --manifest-path='$(top_srcdir)/yjit/Cargo.toml'
4141
endif

0 commit comments

Comments
 (0)