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