Skip to content

Commit f1b88ea

Browse files
authored
run-make test: using single quotes to not trigger the shell
1 parent 43a7802 commit f1b88ea

File tree

1 file changed

+1
-1
lines changed
  • tests/run-make/inaccessible-temp-dir

1 file changed

+1
-1
lines changed

tests/run-make/inaccessible-temp-dir/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ all:
2525
# Run rustc with `-Ztemps-dir` set to a directory
2626
# *inside* the inaccessible one, so that it can't create it
2727
$(RUSTC) program.rs -Ztemps-dir=$(TMPDIR)/inaccessible/tmp 2>&1 \
28-
| $(CGREP) "failed to find or create the directory specified by `--temps-dir`"
28+
| $(CGREP) 'failed to find or create the directory specified by `--temps-dir`'
2929

3030
# Make the inaccessible directory accessible,
3131
# so that compiletest can delete the temp dir

0 commit comments

Comments
 (0)