Home | History | Annotate | Line # | Download | only in unit-tests
varmod-hash.mk revision 1.3
      1  1.3  rillig # $NetBSD: varmod-hash.mk,v 1.3 2020/08/23 15:13:21 rillig Exp $
      2  1.1  rillig #
      3  1.2  rillig # Tests for the :hash variable modifier.
      4  1.1  rillig 
      5  1.1  rillig all:
      6  1.3  rillig 	@echo ${12345:L:has}			# modifier name too short
      7  1.3  rillig 	@echo ${12345:L:hash}			# ok
      8  1.3  rillig 	@echo ${12345:L:hash=SHA-256}		# :hash does not accept '='
      9  1.3  rillig 	@echo ${12345:L:hasX}			# misspelled
     10  1.3  rillig 	@echo ${12345:L:hashed}			# modifier name too long
     11