On Tue, Sep 25, 2018 at 14:37:00 +0100, Alex Bennée wrote: > > Emilio G. Cota <c...@braap.org> writes: > > > --- /dev/null > > +++ b/tests/fp/berkeley-testfloat-3 > > @@ -0,0 +1 @@ > > +Subproject commit ca9fa2ba05625ba929958f163b01747e07dd39cc > > That said I'm getting: > > GIT ui/keycodemapdb tests/fp/berkeley-testfloat-3 > tests/fp/berkeley-softfloat-3 > error: Server does not allow request for unadvertised object > ca9fa2ba05625ba929958f163b01747e07dd39cc > Fetched in submodule path 'tests/fp/berkeley-testfloat-3', but it did not > contain ca9fa2ba05625ba929958f163b01747e07dd39cc. Direct fetching of that > commit failed. > ./scripts/git-submodule.sh: failed to update modules > > But it looks like that is cached data in .git/modules from the last time > which seems particularly stubborn to excise...
ca9fa2 is the current head of master for that repo, so yes it's probably a local caching issue. $ git submodule sync is worth a shot. Thanks, E.