1 # TODO(ninja): Ninja does not believe the timestamp so this test is invalid.
2
3 test1:
4 touch -t 197101010000 old1
5 touch -t 197101010000 old2
6 touch new
7
8 test2: old1 old2
9 echo DONE
10
11 old1: | new
12 echo FAIL
13
14 old2: new
15 echo PASS
16
17 new:
18 echo FAIL_new
19