[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Monotone-devel] tests
From: |
graydon hoare |
Subject: |
Re: [Monotone-devel] tests |
Date: |
14 Sep 2003 01:04:38 -0400 |
User-agent: |
Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 |
Tom Tromey <address@hidden> writes:
> I get a couple of test failures; log appended.
huh! weird. what version?
> I looked at t_fork a little. Maybe it is failing because only the
> first commit specifies a branch name?
no, subsequent commits should infer the branch name from the branch of
the base version your changes are relative to. at least, it does on my
copy :)
> I didn't look at the t_merge failure at all.
that one's a segfault. it's just reported in a nicer way. you still
need to look from inside gdb. *sigh* I had hoped those would never
really happen in this program, but there seem to be two categories of
faults which produce those: the vsprintf calls and unchecked vector
references. I've taken to using vector.at() rather than [] recently,
and am considering moving all the older []'s to .at, as well as
changing the vsprintfs to use boost formatters. not sure it matters
much more than aesthetics, but personally I don't like seeing
segfaults at all.
-graydon