Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jgit-dev] Missing tree during self-tests on NonStop

On Wed, Feb 25, 2015 at 2:54 PM, Randall S. Becker
<rsbecker@xxxxxxxxxxxxx> wrote:
> I have a second issue that I am trying to resolve for our NonStop port. This one is a failure in both GitConstructionTest and PushCommandTest. Both have the virtually the same stack trace and look a little (maybe) like bugs 445744 and 422988. Both tests point to the same missing tree id (4b825dc6...). It seems like something in the FileObjectDatabase hierarchy is not liking what the platform is doing with java.io.File, but I am looking for a pointer to where to look next.
>
> testClose(org.eclipse.jgit.api.GitConstructionTest)  Time elapsed: 9.15 sec  <<< ERROR!
> org.eclipse.jgit.api.errors.JGitInternalException: Missing tree 4b825dc642cb6eb9a060e54bf8d69288fbee4904

My first check would be to look at the test repository on disk and see
if $GIT_DIR/objects/4b/825dc642cb6eb9a060e54bf8d69288fbee4904 exists
and is a valid Git object. It seems there are some issues creating or
reading files through java.io due to Java doing "extra special logic"
on your platform. :(


Back to the top