Home | History | Annotate | Line # | Download | only in unit-tests
shell-csh.mk revision 1.3
      1  1.3  rillig # $NetBSD: shell-csh.mk,v 1.3 2020/10/03 15:23:42 rillig Exp $
      2  1.1  rillig #
      3  1.1  rillig # Tests for using a C shell for running the commands.
      4  1.1  rillig 
      5  1.3  rillig .SHELL: name="csh" path="${:!which csh!}"
      6  1.3  rillig 
      7  1.3  rillig # The -j option is needed to cover the code in JobOutput.
      8  1.3  rillig #
      9  1.3  rillig # FIXME: The "se " does not belong in the output.
     10  1.3  rillig .MAKEFLAGS: -j1
     11  1.1  rillig 
     12  1.1  rillig all:
     13  1.2  rillig 	# This command is both printed and executed.
     14  1.2  rillig 	echo normal
     15  1.2  rillig 
     16  1.2  rillig 	# This command is only executed.
     17  1.2  rillig 	@echo hidden
     18  1.2  rillig 
     19  1.2  rillig 	# This command is both printed and executed.
     20  1.2  rillig 	+echo always
     21  1.2  rillig 
     22  1.2  rillig 	# This command is both printed and executed.
     23  1.2  rillig 	-echo ignore errors
     24