Skip to content

Commit

Permalink
Make commit-date pattern more specific in test for issue 107094
Browse files Browse the repository at this point in the history
  • Loading branch information
duckymirror committed Apr 17, 2023
1 parent bfa8798 commit 0a763c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/run-make/issue-107094/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
include ../tools.mk

all:
$(BARE_RUSTC) --version --verbose | $(CGREP) -i -e "commit-hash: [0-9a-f]{40}" "commit-date: [0-9\-]+"
$(BARE_RUSTDOC) --version --verbose | $(CGREP) -i -e "commit-hash: [0-9a-f]{40}" "commit-date: [0-9\-]+"
$(BARE_RUSTC) --version --verbose | $(CGREP) -i -e "commit-hash: [0-9a-f]{40}" "commit-date: [0-9]{4}-[0-9]{2}-[0-9]{2}"
$(BARE_RUSTDOC) --version --verbose | $(CGREP) -i -e "commit-hash: [0-9a-f]{40}" "commit-date: [0-9]{4}-[0-9]{2}-[0-9]{2}"

0 comments on commit 0a763c9

Please sign in to comment.