fix histedit_no_op test which was failing randomly
commitad324bf53a11587dc227a2c00b65020595aa18dc
authorStefan Sperling <stsp@stsp.name>
Tue, 21 Sep 2021 20:27:45 +0000 (21 20:27 +0000)
committerStefan Sperling <stsp@stsp.name>
Tue, 21 Sep 2021 20:27:45 +0000 (21 20:27 +0000)
treedeffdf4c18406f9db2754fa4f5191e891cc2a0ca
parent34c3415fac1e6f7bb8fb803417020063834c6112
fix histedit_no_op test which was failing randomly

A no-op replayed history ends up having exactly the same commit IDs
if all commits are created at roughly the same moment in time.
There are no content changes involved so if commit timestamps do not
differ then commit hashes will be the same. In which case there is no
fork in history for 'got histedit -l' to display, yet the test was
always expecting a fork in history to be displayed.

Update the test to take this issue into account. The test will now pass
no matter which result is produced by the histedit operation.

Problem found by Lucas who observed that this test was randomly failing.
Patch also provided by Lucas.
regress/cmdline/histedit.sh