Skip to content

Commit b40355c

Browse files
authored
fix #37673, make test-Test (#37787)
Need to add --depwarn=error flag to Makefile.
1 parent d57de75 commit b40355c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ default: all
2323

2424
$(TESTS):
2525
@cd $(SRCDIR) && \
26-
$(call PRINT_JULIA, $(call spawn,$(JULIA_EXECUTABLE)) --check-bounds=yes --startup-file=no ./runtests.jl $@)
26+
$(call PRINT_JULIA, $(call spawn,$(JULIA_EXECUTABLE)) --check-bounds=yes --startup-file=no --depwarn=error ./runtests.jl $@)
2727

2828
$(addprefix revise-, $(TESTS)): revise-% :
2929
@cd $(SRCDIR) && \
30-
$(call PRINT_JULIA, $(call spawn,$(JULIA_EXECUTABLE)) --check-bounds=yes --startup-file=no ./runtests.jl --revise $*)
30+
$(call PRINT_JULIA, $(call spawn,$(JULIA_EXECUTABLE)) --check-bounds=yes --startup-file=no --depwarn=error ./runtests.jl --revise $*)
3131

3232
embedding:
3333
@$(MAKE) -C $(SRCDIR)/$@ check $(EMBEDDING_ARGS)

0 commit comments

Comments
 (0)