sapling/tests/fixtures/merge_uneven.tar.gz
Rain ⁣ b3b1b0e4ed fixtures: fix and update fixtures
Summary:
So the fixtures were broken -- there was apparently a bug that would
cause p2 of root tree manifests to always be null. Fix them by regenerating
trees.

Also the directory name the tarball got extracted to had hyphens in it instead
of underscores. Fix that to make it all underscores.

I used the following commands to do this -- apologies for the hacky zsh:

```
$ for tar in *.tar.gz; do (x=${tar//.tar.gz/}; cp $x.tar.gz ~/local/tmp &&
pushd ~/local/tmp && rm -rf $x ${x//_/-} && tar xf $x.tar.gz && mv ${x//_/-} $x
&& pushd $x/.hg/store && rm 00manifesttree.i && hg backfilltree && popd && tar
cf $x.tar.gz $x && popd && cp ~/local/tmp/$x.tar.gz .); done

$ buck run scm/mononoke/tests/fixtures:regenerate -- *.tar.gz --overwrite
```

Reviewed By: farnz

Differential Revision: D8854625

fbshipit-source-id: 08be7a1e89150b70a308343b43b299a0030708b9
2018-07-17 11:08:18 -07:00

140 KiB