Skip to content

Commit

Permalink
Fix syntactic mistake in earlier definition of FAILS.
Browse files Browse the repository at this point in the history
(Note that most tests are not using FAILS anyway, due to rust-lang#13746.)
  • Loading branch information
pnkfelix committed Apr 25, 2014
1 parent 4fbfc0b commit f716518
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/run-make/tools.mk
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN_BINFILE = $(TMPDIR)/$(1)
# This the basic way we will invoke the generated binary. It sets the
# LD_LIBRARY_PATH environment variable before running the binary.
RUN = $(TARGET_RPATH_ENV) $(RUN_BINFILE)
FAILS = $(TARGET_RPATH_ENV) ( $(RUN_BINFILE) && exit 1 || exit 0 )
FAILS = $(TARGET_RPATH_ENV) $(RUN_BINFILE) && exit 1 || exit 0

RLIB_GLOB = lib$(1)*.rlib
STATICLIB = $(TMPDIR)/lib$(1).a
Expand Down

1 comment on commit f716518

@alexcrichton
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I renamed the one case using FAILS to using FAIL (and renamed this as well), and everything passed locally. Could you include a fix to wire everything up to FAIL?

Please sign in to comment.