History log of /freebsd-current/tools/build/make_check/Makefile
Revision Date Author Comments
# 2c5dcc54 02-Jan-2024 Warner Losh <imp@FreeBSD.org>

make_check: Deobit fmake support

We don't need make_check to work in a fmake world anymore (nor have we
in the past decade). Just remove it here.

Note in passing it's been 10 years since we've added a new test here and
maybe we're past the need for this part of the build (or need to revamp
it to include all the features added to bmake since 2016 that the build
system silently depends on).

Sponsored by: Netflix
Reviewed by: brooks
Pull Request: https://github.com/freebsd/freebsd-src/pull/980


# d0b2dbfa 16-Aug-2023 Warner Losh <imp@FreeBSD.org>

Remove $FreeBSD$: one-line sh pattern

Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/


# fad3f0e4 19-Aug-2014 Ian Lepore <ian@FreeBSD.org>

Don't stop other legs of a parallel build due to a failure in make_check.
The whole point is to see if there's any failure, which is handled by
building a newer version of make.


# 9b6b6816 08-Jan-2013 David E. O'Brien <obrien@FreeBSD.org>

Following r226271, allow disabling lzma support with "WITHOUT_LZMA_SUPPORT".
Correct r226271 which should have used WITHOUT_BZIP2_SUPPORT per r166255.

Obtained from: Juniper Networks


# 0815243c 06-Oct-2012 Marcel Moolenaar <marcel@FreeBSD.org>

Add support for bmake. This includes:
1. Don't do upgrade_checks when using bmake. As long as we have WITH_BMAKE,
there's a bootstrap complication in ths respect. Avoid it. Make the
necessary changes to have upgrade_checks work wth bmake anyway.
2. Remove the use of -E. It's not needed in our build because we use ?= for
the respective variables, which means that we'll take the environment
value (if any) anyway.
3. Properly declare phony targets as phony as bmake is a lot smarter (and
thus agressive) about build avoidance.
4. Make sure CLEANFILES is complete and use it on .NOPATH. bmake is a lot
smarter about build avoidance and should not find files we generate in
the source tree. We should not have files in the repository we want to
generate, but this is an easier way to cross this hurdle.
5. Have behavior under bmake the same as it is under make with respect to
halting when sub-commands fail. Add "set -e" to compound commands so
that bmake is informed when sub-commands fail.
6. Make sure crunchgen uses the same make as the rest of the build. This
is important when the make utility isn't called make (but bmake for
example).
7. While here, add support for using MAKEOBJDIR to set the object tree
location. It's the second alternative bmake looks for when determining
the actual object directory (= .OBJDIR).

Submitted by: Simon Gerraty <sjg@juniper.net>
Submitted by: John Van Horne <jvanhorne@juniper.net>


# 7750ad47 22-Aug-2012 Marcel Moolenaar <marcel@FreeBSD.org>

Sync FreeBSD's bmake branch with Juniper's internal bmake branch.

Requested by: Simon Gerraty <sjg@juniper.net>


# 6e501706 05-Jul-2012 David E. O'Brien <obrien@FreeBSD.org>

Remove the "funny targets" make check. We no longer need embedded :: targets
to build FreeBSD (they are used in Perl man pages). We never needed embedded
"!" in targets that I can find.

We got this from OpenBSD and I cannot find any other make that supports
such things -- contrary to their commit message claim: "This behaviour
is also consistent with other versions of make.".


# 3c24f8e8 25-May-2011 David E. O'Brien <obrien@FreeBSD.org>

+ Tighten up (and simplify) the pass_cmd_vars_1 "variable definition arrived
from the calling make" test.
+ Be more tolerant of newlines in the plus_flag "supports the '+' flag" test.


# a7d5f7eb 19-Oct-2010 Jamie Gritton <jamie@FreeBSD.org>

A new jail(8) with a configuration file, to replace the work currently done
by /etc/rc.d/jail.


# fe0506d7 09-Mar-2010 Marcel Moolenaar <marcel@FreeBSD.org>

Create the altix project branch. The altix project will add support
for the SGI Altix 350 to FreeBSD/ia64. The hardware used for porting
is a two-module system, consisting of a base compute module and a
CPU expansion module. SGI's NUMAFlex architecture can be an excellent
platform to test CPU affinity and NUMA-aware features in FreeBSD.


# d7f03759 19-Oct-2008 Ulf Lilleengen <lulf@FreeBSD.org>

- Import the HEAD csup code which is the basis for the cvsmode work.


# 1b647f44 01-Oct-2007 Ruslan Ermilov <ru@FreeBSD.org>

The shell_1_sh test was failing with "make -jX".

Approved by: re (kensmith)


# 89f087e8 07-Dec-2004 Hartmut Brandt <harti@FreeBSD.org>

Fix builds with a read-only directory and a make upgrade. This is done
by forcing the creation of an object directory for the make regression
tests. Let make handle the tracking of the dependency and installation
of test_shell script.

Submitted by: ru


# d29cf9e2 06-Dec-2004 Ruslan Ermilov <ru@FreeBSD.org>

Make this work under debugging, e.g., "make -dl".


# 9c1f3ca3 02-Dec-2004 Hartmut Brandt <harti@FreeBSD.org>

Make the tests runnable on a read-only src. To do this you must make sure
that you create one of the object directories make knows (see make(1)).
This uses the -C flag, so add a test that checks that make actually accepts
-C. Also fix the test that selects csh via the .SHELL target to work for
tcsh users too.

This commit renames shell_test to shell_test.sh. There is no history
to preserve so go without a repo-copy.

Reviewed by: ru


# 60f801ee 30-Nov-2004 Hartmut Brandt <harti@FreeBSD.org>

Chmod the shell testscript to be executable if it isn't already. According
to the CVS-Meisters x-mode just happens to work, but is not guaranteed to
do so. Try to be on the safe side.


# 7b54cdda 25-Nov-2004 Hartmut Brandt <harti@FreeBSD.org>

Add some regression tests for the .SHELL target. I'm not sure that the
output of shell_2j is actually correct - it just tests what make currently
does. Make should switch on echoing for the second line, shouldn't it?


# 00e13b1d 11-Nov-2004 Nik Clayton <nik@FreeBSD.org>

Switch over to a different, more flexible test output protocol that's
understood by Perl's Test::Harness module and prove(1) commands.

Update README to describe the new protocol. The work's broken down into
two main sets of changes.

First, update the existing test programs (shell scripts and C programs)
to produce output in the ok/not ok format, and to, where possible, also
produce a header describing the number of tests that are expected to be
run.

Second, provide the .t files that actually run the tests. In some cases
these are copies of, or very similar too, scripts that already existed.
I've kept the old scripts around so that it's possible to verify that
behaviour under this new system (in terms of whether or not a test fails)
is identical to the behaviour under the old system.

Add a TODO file.


# 9a5cf326 23-Oct-2004 Ruslan Ermilov <ru@FreeBSD.org>

Add a regression test for the alternate shell specification.


# 215431de 12-Aug-2004 Hartmut Brandt <harti@FreeBSD.org>

Now that make more correctly handles variable assignments
in .MAKEFLAGS targets enable the regression test for this.


# cfe632ea 05-Aug-2004 Hartmut Brandt <harti@FreeBSD.org>

Back out something I'm working on that crept in with the last commit.

Spotted by: ru


# 82eb7072 05-Aug-2004 Hartmut Brandt <harti@FreeBSD.org>

Remove extra spaces. Remove double quotes around error messages -
they are not needed and will actually be printed.

Submitted by: ru


# c997f47b 05-Aug-2004 Hartmut Brandt <harti@FreeBSD.org>

Add another test that checks for a working '+' command flag.


# 48ec21e7 04-Aug-2004 Hartmut Brandt <harti@FreeBSD.org>

Add a regression test for the passing of command line
variable assignments via the MAKEFLAGS environment variable.


# 99d3652e 30-Jan-2004 Ruslan Ermilov <ru@FreeBSD.org>

Add a test for what was broken in rev. 1.28 and fixed in rev. 1.29
of make/str.c.


# 9608d7e2 29-Jan-2004 Ruslan Ermilov <ru@FreeBSD.org>

Add a test for what was fixed in revs. 1.28 and 1.29 of make/str.c.


# 21159d16 02-Oct-2003 Ruslan Ermilov <ru@FreeBSD.org>

Fix a bug that prevented exists() from finding "foo/", "foo/."
and "foo/.." when ".PATH: foo" was also given.

PR: bin/34062


# c94d7043 04-Jul-2003 Ruslan Ermilov <ru@FreeBSD.org>

Fixed broken arithmetic expression parser.

Reminded by: bde
In memory of: alane


# 413a16d8 10-Feb-2003 Garance A Drosehn <gad@FreeBSD.org>

The regression-tests for 'make' *expect* to trigger make's warning:
warning: duplicate script for target "double" ignored
The regression-tests do try to hide that message, but the message does
still appear when using -j (eg: 'make -j5 buildworld'). This changes the
regression-test so the expected warning message will not be seen even
when -j is specified.

Reviewed by: jmallett ru


# be8b43b4 28-Nov-2002 Ruslan Ermilov <ru@FreeBSD.org>

Add a test for what was fixed in revisions 1.39 and 1.50 of
make/parse.c (allow embedded `:' and `!' in target names).

Approved by: re


# 113cf9e6 28-Nov-2002 Ruslan Ermilov <ru@FreeBSD.org>

Moved make(1) regression tests from src/Makefile to where they
belong (src/tools/regression/usr.bin/make), and use the latter
to test if make(1) is adequate for building the world.

Approved by: re


# 5661d4a7 25-Oct-2002 Juli Mallett <jmallett@FreeBSD.org>

Hide the test in <target> under '.if make(<target>)' so as to not get any
errors/warnings related to crud in said test block.


# 89d22e2f 27-Jul-2002 Juli Mallett <jmallett@FreeBSD.org>

As of revision 1.38 of make/parse.c, our make(1) will warn too. Note that
this isn't just for the sake of testing behaviour, and that things really
do break if this regression occurs.


# 6d5fda5f 19-Jun-2002 Juli Mallett <jmallett@FreeBSD.org>

Grrr, make the test for embedded variables in the left-hand-side actually do
the right thing in every case. Yuck.


# 0aa9e01c 19-Jun-2002 Juli Mallett <jmallett@FreeBSD.org>

Add a test for what was fixed in revision 1.27 and 1.28 of make(1)'s var.c,
expansion of embedded variables in the left-hand-side of an assignment
expression, using the simplest case - hiding recursion using nil-expanded
variables.


# a9b736ad 05-May-2002 Juli Mallett <jmallett@FreeBSD.org>

Add a regression test for bin/5297, regarding sysv substitution with a nil
left-hand-side.


# 624abf85 26-Apr-2002 Juli Mallett <jmallett@FreeBSD.org>

Prefix tests with PASS and FAIL, to make grepping easier, and note this in
the README.

This affects only the base-system regression tests, of course.


# 6d3ca9de 20-Apr-2002 Juli Mallett <jmallett@FreeBSD.org>

Check to see if make(1)'s handling of doubly-defined targets is busted or
not. A lot relies on this.


# 6541d27c 20-Apr-2002 Juli Mallett <jmallett@FreeBSD.org>

Add a test of variable evaluation and substitution for make(1), as a start
of tests for it.