From: Paul Smith Date: Mon, 27 Jun 2005 18:53:46 +0000 (+0000) Subject: Make sure timestamp problems don't cause the -W test to fail. X-Git-Tag: 3.81~48 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=261d7b44fa0d5e2b318c0544f9cc1f1d8e4ac69c;p=platform%2Fupstream%2Fmake.git Make sure timestamp problems don't cause the -W test to fail. --- diff --git a/tests/ChangeLog b/tests/ChangeLog index bc2108d..9d80d94 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,8 @@ +2005-06-27 Paul D. Smith + + * scripts/options/dash-W: Set the timestamp to foo.x in the future, + to be sure it will be considered updated when it's remade. + 2005-06-26 Paul D. Smith * scripts/functions/shell: New test suite for the shell function. diff --git a/tests/scripts/options/dash-W b/tests/scripts/options/dash-W index 9a12d9a..2864711 100644 --- a/tests/scripts/options/dash-W +++ b/tests/scripts/options/dash-W @@ -50,6 +50,9 @@ touch baz.x'); # Now run with -W bar.x +# Tweak foo.x's timestamp so the update will change it. +utouch(1000, 'foo.x'); + run_make_test(undef, '-W bar.x', "restarts=\ntouch foo.x\nrestarts=1\ntouch baz.x"); rmfiles('foo.x', 'bar.x');