After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 342633 - assert rangex[0] <= rangex[1] and range1[0] <= range1[1]
assert rangex[0] <= rangex[1] and range1[0] <= range1[1]
Status: RESOLVED FIXED
Product: meld
Classification: Other
Component: filediff
1.1.x
Other All
: Normal normal
: ---
Assigned To: Stephen Kennedy
Stephen Kennedy
Depends on:
Blocks:
 
 
Reported: 2006-05-22 21:38 UTC by Georg
Modified: 2009-09-01 01:35 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Georg 2006-05-22 21:38:25 UTC
Please describe the problem:
#!/bin/sh
mkdir /tmp/meld
cd /tmp/meld
echo a > a
echo b > b
echo 123 >> b
echo c > c

echo "merge either the right frame into the middle or the left to the middle"
echo "observe the assertion error on stderr"

meld a b c


--------------------


Error message is:

Traceback (most recent call last):
  • File "/usr/local/lib/meld/filediff.py", line 287 in after_text_delete_range
    self._after_text_modified(buffer, starting_at, -self.deleted_lines_pending)
  • File "/usr/local/lib/meld/filediff.py", line 236 in _after_text_modified
    change_range = self.linediffer.change_sequence( pane, startline, sizechange, self._get_texts())
  • File "/usr/local/lib/meld/diffutil.py", line 104 in change_sequence
    changes[1] = self._change_sequence(     1, sequence, startidx, sizechange, texts)
  • File "/usr/local/lib/meld/diffutil.py", line 143 in _change_sequence
    assert rangex[0] <= rangex[1] and range1[0] <= range1[1] AssertionError


Steps to reproduce:
1. seee above script
2. 
3. 


Actual results:
assertion error see above

Expected results:
sane merge behavior, no error

Does this happen every time?
yes

Other information:
Comment 1 Stephen Kennedy 2006-05-27 14:40:05 UTC
Thanks, nice testcase.
Comment 2 Stephen Kennedy 2006-05-27 20:25:35 UTC
Hardly critical though.
Comment 4 Kai Willadsen 2009-09-01 01:35:31 UTC
This assertion doesn't trigger on Meld 1.3.1. As Vincent suggests, it looks like the fix from bug #578303 fixed this too.

Closing - please reopen if you can reproduce with 1.3.1 or git head.