summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2023-01-01 16:25:39 -0500
committerPaul Smith <psmith@gnu.org>2023-01-01 17:05:12 -0500
commite7ce3a655e3e125a92e1c95f483675770be7f3bc (patch)
treebd227b966f805e4d85834104630569bf27f937dd /tests
parentc580ebae8df0b1235b9287a59b9a3ab8c2bf9dfe (diff)
downloadmake-git-e7ce3a655e3e125a92e1c95f483675770be7f3bc.tar.gz
Convert references from "GNU make" to "GNU Make"
Diffstat (limited to 'tests')
-rw-r--r--tests/NEWS8
-rwxr-xr-xtests/run_make_tests.com2
-rw-r--r--tests/run_make_tests.pl6
-rw-r--r--tests/scripts/features/archives4
-rw-r--r--tests/scripts/features/conditionals4
-rw-r--r--tests/scripts/features/export2
-rw-r--r--tests/scripts/features/include2
-rw-r--r--tests/scripts/features/reinvoke2
-rw-r--r--tests/scripts/functions/eval2
-rw-r--r--tests/scripts/functions/value2
-rw-r--r--tests/scripts/options/dash-C2
-rw-r--r--tests/scripts/options/print-directory2
-rw-r--r--tests/scripts/targets/POSIX2
-rw-r--r--tests/scripts/variables/SHELL2
-rw-r--r--tests/scripts/variables/special2
-rw-r--r--tests/scripts/vms/library2
16 files changed, 23 insertions, 23 deletions
diff --git a/tests/NEWS b/tests/NEWS
index f2984320..3227687b 100644
--- a/tests/NEWS
+++ b/tests/NEWS
@@ -1,6 +1,6 @@
Changes from 0.4.9 to 3.78 (Sep 6, 1999):
- Lots of new tests. Renamed to follow the GNU make scheme. Also
+ Lots of new tests. Renamed to follow the GNU Make scheme. Also
added some support for using Purify with make.
Rob Tulloh contributed some changes to get the test suite running on
@@ -22,7 +22,7 @@ Changes from 0.4.8 to 0.4.9 (May 14, 1998):
Release by Paul D. Smith <psmith@baynetworks.com>; I'm the one to
blame for problems in this version :).
- Add some perl to test_driver.pl to strip out GNU make clock skew
+ Add some perl to test_driver.pl to strip out GNU Make clock skew
warning messages from the output before comparing it to the
known-good output.
@@ -34,7 +34,7 @@ Changes from 0.4.7 to 0.4.8 (May 14, 1998):
Release by Paul D. Smith <psmith@baynetworks.com>; I'm the one to
blame for problems in this version :).
- New tests for features to be included in GNU make 3.77.
+ New tests for features to be included in GNU Make 3.77.
Changes from 0.4.6 to 0.4.7 (August 18, 1997):
@@ -55,7 +55,7 @@ Changes from 0.4.5 to 0.4.6 (April 07, 1997):
Release by Paul D. Smith <psmith@baynetworks.com>; I'm the one to
blame for problems in this version :).
- Updated to work with GNU make 3.76 (and pretests).
+ Updated to work with GNU Make 3.76 (and pretests).
Added new tests and updated existing ones. Note that the new tests
weren't tested with perl 4, however I think they should work.
diff --git a/tests/run_make_tests.com b/tests/run_make_tests.com
index a225ec61..ba00d378 100755
--- a/tests/run_make_tests.com
+++ b/tests/run_make_tests.com
@@ -1,6 +1,6 @@
$! Test_make.com
$!
-$! This is a wrapper for the GNU make perl test programs on VMS.
+$! This is a wrapper for the GNU Make perl test programs on VMS.
$!
$! Parameter "-help" for description on how to use described below.
$!
diff --git a/tests/run_make_tests.pl b/tests/run_make_tests.pl
index 20e1e967..1017cb44 100644
--- a/tests/run_make_tests.pl
+++ b/tests/run_make_tests.pl
@@ -56,7 +56,7 @@ $memcheck_args = '--num-callers=15 --tool=memcheck --leak-check=full --suppressi
$massif_args = '--num-callers=15 --tool=massif --alloc-fn=xmalloc --alloc-fn=xcalloc --alloc-fn=xrealloc --alloc-fn=xstrdup --alloc-fn=xstrndup';
$pure_log = undef;
-# The location of the GNU make source directory
+# The location of the GNU Make source directory
$srcdir = undef;
$fqsrcdir = undef;
$srcvol = undef;
@@ -128,7 +128,7 @@ sub valid_option
if ($option =~ /^-srcdir$/i) {
$srcdir = shift @argv;
if (! -f File::Spec->catfile($srcdir, 'src', 'gnumake.h')) {
- print "$option $srcdir: Not a valid GNU make source directory.\n";
+ print "$option $srcdir: Not a valid GNU Make source directory.\n";
exit 1;
}
return 1;
@@ -601,7 +601,7 @@ sub set_more_defaults
}
$string = `$make_path -v`;
- $string =~ /^(GNU Make [^,\n]*)/ or die "$make_path is not GNU make. Version:\n$string";
+ $string =~ /^(GNU Make [^,\n]*)/ or die "$make_path is not GNU Make. Version:\n$string";
$testee_version = "$1\n";
create_file('null.mk', '');
diff --git a/tests/scripts/features/archives b/tests/scripts/features/archives
index 809bf21e..b0d479b2 100644
--- a/tests/scripts/features/archives
+++ b/tests/scripts/features/archives
@@ -1,6 +1,6 @@
# -*-mode: perl-*-
-$description = "Test GNU make's archive management features.";
+$description = "Test GNU Make's archive management features.";
$details = "\
This only works on systems that support it.";
@@ -41,7 +41,7 @@ my $arvar = "AR=$ar";
# Newer versions of binutils can be built with --enable-deterministic-archives
# which forces all timestamps (among other things) to always be 0, defeating
-# GNU make's archive support. See if ar supports the U option to disable it.
+# GNU Make's archive support. See if ar supports the U option to disable it.
unlink('libxx.a');
$_ = `$ar ${arflags}U libxx.a a1.o $redir`;
if ($? == 0) {
diff --git a/tests/scripts/features/conditionals b/tests/scripts/features/conditionals
index 78344b93..ead3b7eb 100644
--- a/tests/scripts/features/conditionals
+++ b/tests/scripts/features/conditionals
@@ -1,7 +1,7 @@
# -*-perl-*-
-$description = "Check GNU make conditionals.";
+$description = "Check GNU Make conditionals.";
-$details = "Attempt various different flavors of GNU make conditionals.";
+$details = "Attempt various different flavors of GNU Make conditionals.";
run_make_test('
arg1 = first
diff --git a/tests/scripts/features/export b/tests/scripts/features/export
index ad58177b..dcca2111 100644
--- a/tests/scripts/features/export
+++ b/tests/scripts/features/export
@@ -1,5 +1,5 @@
# -*-perl-*-
-$description = "Check GNU make export/unexport commands.";
+$description = "Check GNU Make export/unexport commands.";
$details = "";
diff --git a/tests/scripts/features/include b/tests/scripts/features/include
index 76e365b9..c4db8aad 100644
--- a/tests/scripts/features/include
+++ b/tests/scripts/features/include
@@ -1,6 +1,6 @@
# -*-mode: perl-*-
-$description = "Test various forms of the GNU make 'include' command.";
+$description = "Test various forms of the GNU Make 'include' command.";
$details = "\
Test include, -include, sinclude and various regressions involving them.
diff --git a/tests/scripts/features/reinvoke b/tests/scripts/features/reinvoke
index 07cbbfbe..14e6b479 100644
--- a/tests/scripts/features/reinvoke
+++ b/tests/scripts/features/reinvoke
@@ -1,6 +1,6 @@
# -*-mode: perl-*-
-$description = "Test GNU make's auto-reinvocation feature.";
+$description = "Test GNU Make's auto-reinvocation feature.";
$details = "\
If the makefile or one it includes can be rebuilt then it is, and make
diff --git a/tests/scripts/functions/eval b/tests/scripts/functions/eval
index a3fba87a..4a432fe7 100644
--- a/tests/scripts/functions/eval
+++ b/tests/scripts/functions/eval
@@ -2,7 +2,7 @@
$description = "Test the eval function.";
-$details = "This is a test of the eval function in GNU make.
+$details = "This is a test of the eval function in GNU Make.
This function will evaluate inline makefile syntax and incorporate the
results into its internal database.\n";
diff --git a/tests/scripts/functions/value b/tests/scripts/functions/value
index 8e1a6f04..d39a73fe 100644
--- a/tests/scripts/functions/value
+++ b/tests/scripts/functions/value
@@ -2,7 +2,7 @@
$description = "Test the value function.";
-$details = "This is a test of the value function in GNU make.
+$details = "This is a test of the value function in GNU Make.
This function will evaluate to the value of the named variable with no
further expansion performed on it.\n";
diff --git a/tests/scripts/options/dash-C b/tests/scripts/options/dash-C
index e25923d8..62284bf4 100644
--- a/tests/scripts/options/dash-C
+++ b/tests/scripts/options/dash-C
@@ -1,6 +1,6 @@
# -*-perl-*-
-$description = "Test the -C option to GNU make.";
+$description = "Test the -C option to GNU Make.";
use File::Spec;
diff --git a/tests/scripts/options/print-directory b/tests/scripts/options/print-directory
index 7ba9a2e7..df70a7c5 100644
--- a/tests/scripts/options/print-directory
+++ b/tests/scripts/options/print-directory
@@ -1,6 +1,6 @@
# -*-perl-*-
-$description = "Test the -w option to GNU make.";
+$description = "Test the -w option to GNU Make.";
my $enter = "#MAKE#: Entering directory '#PWD#'";
my $leave = "#MAKE#: Leaving directory '#PWD#'";
diff --git a/tests/scripts/targets/POSIX b/tests/scripts/targets/POSIX
index 55adbc4d..bd716861 100644
--- a/tests/scripts/targets/POSIX
+++ b/tests/scripts/targets/POSIX
@@ -15,7 +15,7 @@ all: ; \@#HELPER# -q fail 1; true
# User settings must override .POSIX
# In the standard .POSIX must be the first thing in the makefile
-# but we relax that rule in GNU make.
+# but we relax that rule in GNU Make.
run_make_test(qq!
.SHELLFLAGS = -xc
.POSIX:
diff --git a/tests/scripts/variables/SHELL b/tests/scripts/variables/SHELL
index 9334c040..fa3b5fc8 100644
--- a/tests/scripts/variables/SHELL
+++ b/tests/scripts/variables/SHELL
@@ -36,7 +36,7 @@ run_make_test("SHELL := $altshell\n".'
all:;@echo "$(SHELL) $$SHELL"
', '', "$altshell $mshell");
-# As a GNU make extension, if make's SHELL variable is explicitly exported,
+# As a GNU Make extension, if make's SHELL variable is explicitly exported,
# then we really _DO_ export it.
$ENV{SHELL} = $mshell;
diff --git a/tests/scripts/variables/special b/tests/scripts/variables/special
index abe9fc0c..e05f6ab6 100644
--- a/tests/scripts/variables/special
+++ b/tests/scripts/variables/special
@@ -1,6 +1,6 @@
# -*-perl-*-
-$description = "Test special GNU make variables.";
+$description = "Test special GNU Make variables.";
$details = "";
diff --git a/tests/scripts/vms/library b/tests/scripts/vms/library
index 8375dfa6..9c603e08 100644
--- a/tests/scripts/vms/library
+++ b/tests/scripts/vms/library
@@ -1,6 +1,6 @@
# -*-mode: perl-*-
-$description = "Test GNU make's VMS Library management features.";
+$description = "Test GNU Make's VMS Library management features.";
$details = "\
This only works on VMS systems.";