Le 28/01/15 21:36, Rene Rivera a écrit :
On Wed, Jan 28, 2015 at 9:26 AM, Raffi Enficiaud
<raffi.enficiaud@mines-paris.org
<mailto:raffi.enficiaud@mines-paris.org>> wrote:
So what about adding "< /dev/null" to the launching line?
Sure.. Although it's a bit trickier than just adding it since "<
/dev/null" will not work on Windows. Try the attached testing.jam and
tell me if it solves the problem.
The script seems to work good if I change
$(LAUNCHER) "$(>)" $(ARGS) "$(INPUT_FILES)" > "$(output-file)" 2>&1 < $(.NULLIN)
to
$(LAUNCHER) "$(>)" $(ARGS) "$(INPUT_FILES)" > "$(output-file)" 2>&1 $(.NULLIN)
(the < before the $(.NULLIN) expands to "< < /dev/null")
Thanks! Should I create a ticket? If so, just tell me the component (not clear if "Regression testing" or "building boost").