# # # patch "tests/importing_cvs_files/__driver__.lua" # from [0170dbd22fc9bc14c8a6d16d6f85754d5a4dabf1] # to [53a20869275488855933ddf5097507a3a9f01f23] # ============================================================ --- tests/importing_cvs_files/__driver__.lua 0170dbd22fc9bc14c8a6d16d6f85754d5a4dabf1 +++ tests/importing_cvs_files/__driver__.lua 53a20869275488855933ddf5097507a3a9f01f23 @@ -20,12 +20,15 @@ check(cvs("add", "testdir"), 0, false, false) check(cvs("add", "testdir/importme"), 0, false, false) check(cvs("commit", "-m", 'commit 0', "testdir/importme"), 0, false, false) +sleep(1) -- these are needed to make sure the timestamp changes writefile("testdir/importme", "version 1 of test file") tsha1 = sha1("testdir/importme") check(cvs("commit", "-m", 'commit 1', "testdir/importme"), 0, false, false) +sleep(1) writefile("testdir/importme", "version 2 of test file") tsha2 = sha1("testdir/importme") check(cvs("commit", "-m", 'commit 2', "testdir/importme"), 0, false, false) +sleep(1) writefile("testdir/importme", "version 3 of test file") tsha3 = sha1("testdir/importme") check(cvs("commit", "-m", 'commit 3', "testdir/importme"), 0, false, false)