xref: /freebsd/contrib/bmake/unit-tests/directive-warning.mk (revision 7fa2f2a62f04f095e1e27ad55aa22a8f59b1df8f)
1# $NetBSD: directive-warning.mk,v 1.3 2020/11/03 17:17:31 rillig Exp $
2#
3# Tests for the .warning directive.
4
5# TODO: Implementation
6
7.warn				# misspelled
8.warn message			# misspelled
9.warnin				# misspelled
10.warnin	message			# misspelled
11.warning			# oops: should be "missing argument"
12.warning message		# ok
13.warnings			# misspelled
14.warnings messages		# oops
15
16all:
17	@:;
18