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