summaryrefslogtreecommitdiffstats
path: root/build/pymake/tests/remake-mtime.mk
diff options
context:
space:
mode:
Diffstat (limited to 'build/pymake/tests/remake-mtime.mk')
-rw-r--r--build/pymake/tests/remake-mtime.mk14
1 files changed, 14 insertions, 0 deletions
diff --git a/build/pymake/tests/remake-mtime.mk b/build/pymake/tests/remake-mtime.mk
new file mode 100644
index 000000000..47c775b93
--- /dev/null
+++ b/build/pymake/tests/remake-mtime.mk
@@ -0,0 +1,14 @@
+# mtime(dep1) < mtime(target) so the target should not be made
+$(shell touch dep1; sleep 1; touch target)
+
+all: target
+ echo TEST-PASS
+
+target: dep1
+ echo TEST-FAIL target should not have been made
+
+dep1: dep2
+ @echo "Remaking dep1 (actually not)"
+
+dep2:
+ @echo "Making dep2 (actually not)"