summaryrefslogtreecommitdiff
path: root/external/mit/xorg/server/xorg-server/record/Makefile
diff options
context:
space:
mode:
authorrillig <rillig@NetBSD.org>2023-07-09 10:42:07 +0000
committerrillig <rillig@NetBSD.org>2023-07-09 10:42:07 +0000
commit61a832267cc5bff1a90f086bd56309a3a0671255 (patch)
tree6f663ed82c04970fa2f72561dc8eb6681e5f29fe /external/mit/xorg/server/xorg-server/record/Makefile
parentb2782b14a8e5066f0436d79a391ce49f9e782b76 (diff)
lint: remove redundant '#' after 'argument' in diagnosticsHEADtrunk
Diffstat (limited to 'external/mit/xorg/server/xorg-server/record/Makefile')
0 files changed, 0 insertions, 0 deletions
assumption is true when the tests are run directly from usr.bin/make, but not when they are run from tests/usr.bin/make. 2020-08-23make(1): in archive test, use wildcard that matches more than 1 filerillig This is to make sure that the buffer used for "archive(member)" is properly reset after each member. 2020-08-23make(1): add test for wildcards in archive dependencyrillig 2020-08-16make(1): fix archive testrillig At the beginning of that test, the library archive obviously does not exist yet. This test failure is a bit hard to detect since the test is disabled in usr.bin/make, but not in tests/usr.bin/make. This is because the latter just runs all .mk files as tests, no matter whether they are commented out or not. 2020-08-15make(1): fix archive testrillig Even though it is commented out in this Makefile, it is still run by atf, on purpose. This test is broken on FreeBSD, but on NetBSD it should still be run. Without removing the archive first, it could be left over from a previous test failure and thus be newer than all its members, leading to ${.OODATE} being empty. 2020-07-27make(1): add very basic test for archive handlingrillig The whole code in arch.c had been uncovered by tests before. The code coverage shows that neither the archive name nor the member contain any $, even though archive.mk looks like it. It could be necessary to place the variable assignments below the dependency line, to force late evaluation.