make-alpha
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] make branch, master, updated. 4.2.90-39-g00e590f


From: Paul D. Smith
Subject: [SCM] make branch, master, updated. 4.2.90-39-g00e590f
Date: Mon, 16 Sep 2019 08:28:44 -0400 (EDT)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "make".

The branch, master has been updated
       via  00e590fdefe59744cfa03c780d73a6a01ab450a3 (commit)
       via  4c64a5f986d9574ae864cd5e2852be6cf2cd5fa0 (commit)
       via  414af96a5010353643d2e8691d86dc3416ffbd75 (commit)
       via  1b976397e542e310d5932d6d847e7f24ee441f6d (commit)
       via  9bc5491712711a299eb88ddd9ea1eb03bcc19bdf (commit)
       via  57b13c80200f896ab919c5e3fb2c3b6bb43a1c3c (commit)
       via  02a4c2913a47c988e958b965e53197feff281f38 (commit)
       via  8acb89c8c4c7a65dcd29719778cb759468738a6a (commit)
      from  271e572ba2f16f8d5b1d45c768bdec060073c279 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 00e590fdefe59744cfa03c780d73a6a01ab450a3
Author: Paul Smith <address@hidden>
Date:   Mon Sep 16 08:24:51 2019 -0400

    * NEWS: Update date and clarify -l change.

commit 4c64a5f986d9574ae864cd5e2852be6cf2cd5fa0
Author: Paul Smith <address@hidden>
Date:   Sun Sep 15 16:39:22 2019 -0400

    * tests/run_make_tests.pl: Create $scriptsuffix for Windows/VMS.
    
    * tests/scripts/features/targetvars: Add a suffix to scripts.
    * tests/scripts/misc/general4: Ditto.

commit 414af96a5010353643d2e8691d86dc3416ffbd75
Author: Paul Smith <address@hidden>
Date:   Sun Sep 15 15:30:34 2019 -0400

    Refresh the test suite framework implementation.
    
    Go through both run_make_tests.pl and test_driver.pl and slightly
    modernize the Perl and clean up indentation etc.  Fix a number of
    warnings in the test scripts detected by running with -w.
    
    * tests/test_driver.pl: Move make error string detection out of the
    base test driver.
    (run_all_tests): Ensure that we always look for tests in the cwd.
    * tests/run_make_tests.pl: Use File::Spec for path manipulations.
    Correctly use setlocale() when detecting error strings.
    Get configuration from the config-flags.pm file not config.status.
    * tests/scripts/features/archives: Use new $cwddir variable.
    * tests/scripts/features/reinvoke: Add missing semicolon.
    * tests/scripts/features/vpath2: Avoid non-existent variable.
    * tests/scripts/functions/foreach: Escape variables.
    * tests/scripts/misc/bs-nl: Remove non-existing \v escape sequence.
    * tests/scripts/misc/general4: Use handy create_file().
    * tests/scripts/options/dash-C: Use Cwd/$cwddir.
    * tests/scripts/options/dash-I: Use subst_make_string() and #PWD#.
    * tests/scripts/options/symlinks: Use File::Spec.
    * tests/scripts/targets/DEFAULT: Use create_file and run_make_test.
    * tests/scripts/variables/CURDIR: Use run_make_test.
    * tests/scripts/variables/automatic: Remove extraneous "\".
    * tests/scripts/vms/library: Remove extra "my" and extraneous "\".

commit 1b976397e542e310d5932d6d847e7f24ee441f6d
Author: Paul Smith <address@hidden>
Date:   Sun Sep 15 15:29:12 2019 -0400

    * tests/config-flags.pm.in: Add USE_SYSTEM_GLOB.
    
    * tests/config_flags_pm.com [VMS]: Ditto.

commit 9bc5491712711a299eb88ddd9ea1eb03bcc19bdf
Author: Paul Smith <address@hidden>
Date:   Sun Sep 15 15:26:23 2019 -0400

    * README.git: [SV 56895] Provide more info about "maintainer mode".
    
    * src/read.c (get_next_mword) [HAVE_DOS_PATHS]: Don't fall through to
    parsing variable references if we find a drivespec in a word!

commit 57b13c80200f896ab919c5e3fb2c3b6bb43a1c3c
Author: Paul Smith <address@hidden>
Date:   Sat Sep 14 15:58:57 2019 -0400

    * tests/test_driver.pl: Remember error for "running" a directory.
    
    * tests/scripts/features/errors: Check errors "running" a directory.

commit 02a4c2913a47c988e958b965e53197feff281f38
Author: Paul Smith <address@hidden>
Date:   Sat Sep 14 15:41:58 2019 -0400

    * src/job.c (child_execute_job): Use errno from find_in_given_path().
    
    * tests/test_driver.pl: Determine non-executable error message.
    * tests/scripts/features/errors: Use the local non-executable error.

commit 8acb89c8c4c7a65dcd29719778cb759468738a6a
Author: Paul Smith <address@hidden>
Date:   Fri Sep 13 19:56:20 2019 -0400

    * src/job.c (child_execute_job): Use newer gnulib findprog version.

-----------------------------------------------------------------------

Summary of changes:
 NEWS                              |   12 +-
 README.git                        |   29 +-
 src/job.c                         |    4 +-
 src/read.c                        |    6 +-
 tests/config-flags.pm.in          |   21 +-
 tests/config_flags_pm.com         |    3 +-
 tests/run_make_tests.pl           |  433 ++++++++-----
 tests/scripts/features/archives   |    4 +-
 tests/scripts/features/errors     |   35 +-
 tests/scripts/features/reinvoke   |    2 +-
 tests/scripts/features/targetvars |   22 +-
 tests/scripts/features/vpath2     |    4 +-
 tests/scripts/functions/foreach   |    2 +-
 tests/scripts/misc/bs-nl          |    1 -
 tests/scripts/misc/general4       |   36 +-
 tests/scripts/options/dash-C      |   10 +-
 tests/scripts/options/dash-I      |    8 +-
 tests/scripts/options/symlinks    |   83 ++-
 tests/scripts/targets/DEFAULT     |   44 +-
 tests/scripts/variables/CURDIR    |   14 +-
 tests/scripts/variables/automatic |    2 +-
 tests/scripts/vms/library         |    8 +-
 tests/test_driver.pl              | 1200 ++++++++++++++++---------------------
 23 files changed, 976 insertions(+), 1007 deletions(-)


hooks/post-receive
-- 
make



reply via email to

[Prev in Thread] Current Thread [Next in Thread]