Ignore:
Timestamp:
Oct 29, 2008, 1:37:51 AM (17 years ago)
Author:
bird
Message:

Merged in current GNU Make code (CVS from 2008-10-28). Ref #55.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/tests/scripts/features/parallelism

    r1955 r1993  
    7070# for this situation and print a message if it occurred.  This test used
    7171# to trigger this code when I added it but no longer does after the fix.
     72# We have to increase the timeout from the default (5s) on this test.
    7273
    7374run_make_test("
     
    8081
    8182first second: ; \@echo \$\@; $sleep_command 1; echo \$\@",
    82               '-j2', "first\nfirst\nsecond\nsecond");
     83              '-j2', "first\nfirst\nsecond\nsecond", 0, 7);
    8384
    8485# Michael Matz <matz@suse.de> reported a bug where if make is running in
     
    108109#MAKE#: *** [fail.1] Error 1
    109110The failing command:
    110         @exit 1
     111@exit 1
    111112#MAKE#: *** Waiting for unfinished jobs....
    112113Fail
    113114#MAKE#: *** [fail.2] Error 1
    114115The failing command:
    115         @exit 1
     116@exit 1
    116117Fail
    117118#MAKE#: *** [fail.3] Error 1
    118119The failing command:
    119         @exit 1
     120@exit 1
    120121Ok done',
    121122             512);
     
    138139        @exit 1
    139140', '-j2', '');
     141
     142
     143# TEST #9 -- Savannah bugs 3330 and 15919
     144# In earlier versions of make this will either give the wrong answer, or hang.
     145
     146utouch(-10, 'target');
     147run_make_test('target: intermed ; touch $@
     148
     149.INTERMEDIATE: intermed
     150intermed: | phony ; touch $@
     151
     152.PHONY: phony
     153phony: ; : phony', '-rR -j', ': phony');
     154unlink('target');
    140155
    141156
Note: See TracChangeset for help on using the changeset viewer.