summaryrefslogtreecommitdiff
path: root/tests/scripts/options/dash-W
diff options
context:
space:
mode:
authorTiago Gomes <tiago.gomes@codethink.co.uk>2015-02-03 18:26:19 +0000
committerTiago Gomes <tiago.gomes@codethink.co.uk>2015-02-03 18:32:28 +0000
commita3be1a443088d7516f15caf915b509406b43355d (patch)
treeb95e90dd5e0f84410a1d86c1d58a221089ca4162 /tests/scripts/options/dash-W
parent7290ffb132cfa8c13bf6fb306eb3250e0f9c1f65 (diff)
downloadmake-a3be1a443088d7516f15caf915b509406b43355d.tar.gz
Diffstat (limited to 'tests/scripts/options/dash-W')
-rw-r--r--tests/scripts/options/dash-W4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/scripts/options/dash-W b/tests/scripts/options/dash-W
index d3fde87c..20b9f745 100644
--- a/tests/scripts/options/dash-W
+++ b/tests/scripts/options/dash-W
@@ -12,7 +12,7 @@ a.x b.x: ; echo >> $@
# Run it again: nothing should happen
-run_make_test(undef, '', "#MAKE#: `a.x' is up to date.");
+run_make_test(undef, '', "#MAKE#: 'a.x' is up to date.");
# Now run it with -W b.x: should rebuild a.x
@@ -21,7 +21,7 @@ run_make_test(undef, '-W b.x', 'echo >> a.x');
# Put the timestamp for a.x into the future; it should still be remade.
utouch(1000, 'a.x');
-run_make_test(undef, '', "#MAKE#: `a.x' is up to date.");
+run_make_test(undef, '', "#MAKE#: 'a.x' is up to date.");
run_make_test(undef, '-W b.x', 'echo >> a.x');
# Clean up