freebsd-dev/contrib/bmake/unit-tests/opt-debug-jobs.mk
Simon J. Gerraty e2eeea75eb Merge bmake-20201117
o allow env var MAKE_OBJDIR_CHECK_WRITABLE=no to skip writable
  checks in InitObjdir.  Explicit .OBJDIR target always allows
  read-only directory.

o More code cleanup and refactoring.

o More unit tests

MFC after:	1 week
2020-11-20 06:02:31 +00:00

34 lines
1.2 KiB
Makefile

# $NetBSD: opt-debug-jobs.mk,v 1.5 2020/11/12 21:54:52 rillig Exp $
#
# Tests for the -dj command line option, which adds debug logging about
# running jobs in multiple shells.
.MAKEFLAGS: -dj
# Run in parallel mode since the debug logging is more interesting there
# than in compat mode.
.MAKEFLAGS: -j1
all:
# Only the actual command is logged.
# To see the evaluation of the variable expressions, use -dv.
: ${:Uexpanded} expression
# Undefined variables expand to empty strings.
# Multiple spaces are preserved in the command, as they might be
# significant.
: ${UNDEF} variable
# In the debug output, single quotes are not escaped, even though
# the whole command is enclosed in single quotes as well.
# This allows to copy and paste the whole command, without having
# to unescape anything.
: 'single' and "double" quotes
# Avoid a race condition in the debug output. Without sleeping,
# it is not guaranteed that the two lines "exited/stopped" and
# "JobFinish" are output earlier than the stdout of the actual shell
# commands. The '@' prefix avoids that this final command gets into
# another race condition with the "exited/stopped" line.
@sleep 1