Skip to content

Commit

Permalink
review: drop the .c suffix on test directories
Browse files Browse the repository at this point in the history
  • Loading branch information
abrown committed Nov 23, 2024
1 parent 0626461 commit bcbd60f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ endif
# To ignore a test temporarily, `touch .../success:`.
RUNTESTS:=$(WASMS:$(OBJPAT)=$(RUNDIR)/%/success)
wasm_to_c = $(patsubst $(OBJPAT),$(SRCDIR)/%.c,$1)
$(RUNDIR)/%.c/success: $(OBJPAT)
$(RUNDIR)/%/success: $(OBJPAT)
@mkdir -p $(@D)
@DIR="$(abspath $(@D))" \
WASM="$(abspath $<)" \
Expand Down
2 changes: 1 addition & 1 deletion test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Note that `wasm-ld` must be available, so an additional
looks like (see [`run-test.sh`]):

```sh
$ ls run/$TARGET_TRIPLE/misc/some-test.c
$ ls run/$TARGET_TRIPLE/misc/some-test
cmd.sh # the exact command used to run the test
fs # a directory containing any test-created files
output.log # the captured printed output--only for errors
Expand Down

0 comments on commit bcbd60f

Please sign in to comment.