# # # patch "tests/automate_content_diff/__driver__.lua" # from [0fad36a376de8980ccdb2b44e2673cf1c1261e4f] # to [49eb0b60c12eefb624af0e586d6bd860ac03cfb4] # ============================================================ --- tests/automate_content_diff/__driver__.lua 0fad36a376de8980ccdb2b44e2673cf1c1261e4f +++ tests/automate_content_diff/__driver__.lua 49eb0b60c12eefb624af0e586d6bd860ac03cfb4 @@ -25,10 +25,12 @@ R3=base_revision() commit() R3=base_revision() --- two revisions should work -check(mtn("automate", "content_diff", R1, R2), 0, true, true) +-- one and two revisions should work +check(mtn("automate", "content_diff", "-r", R1), 0, true, true) check(fsize("stdout") ~= 0) +check(mtn("automate", "content_diff", "-r", R1, "-r", R2), 0, true, true) +check(fsize("stdout") ~= 0) --- three do not -check(mtn("automate", "content_diff", R1, R2, R3), 1, true, true) +-- three and more should not +check(mtn("automate", "content_diff", "-r", R1, "-r", R2, "-r", R3), 1, true, true)