Skip to content

Commit f716518

Browse files
committed
Fix syntactic mistake in earlier definition of FAILS.
(Note that most tests are not using FAILS anyway, due to rust-lang#13746.)
1 parent 4fbfc0b commit f716518

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/run-make/tools.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN_BINFILE = $(TMPDIR)/$(1)
1010
# This the basic way we will invoke the generated binary. It sets the
1111
# LD_LIBRARY_PATH environment variable before running the binary.
1212
RUN = $(TARGET_RPATH_ENV) $(RUN_BINFILE)
13-
FAILS = $(TARGET_RPATH_ENV) ( $(RUN_BINFILE) && exit 1 || exit 0 )
13+
FAILS = $(TARGET_RPATH_ENV) $(RUN_BINFILE) && exit 1 || exit 0
1414

1515
RLIB_GLOB = lib$(1)*.rlib
1616
STATICLIB = $(TMPDIR)/lib$(1).a

0 commit comments

Comments
 (0)