xref: /freebsd/contrib/bmake/unit-tests/directive-warning.mk (revision ca53e5aedfebcc1b4091b68e01b2d5cae923f85e)
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