Commit Graph

58844 Commits

Author SHA1 Message Date
Mateusz Kwapich
7ff7c931a8 add option for limiting the log to descendants of single node
Summary:
Let's use new option in CLI. Unfortunately we can't easily accept commit ids in
named params so it has to be a postional one.

Differential Revision: D22234412

fbshipit-source-id: a9c27422fa65ae1c42cb1c243c7694507a957437
2020-07-03 08:02:25 -07:00
svcscm
213a3a8a7c Updating submodules
Summary:
GitHub commits:

4536649dec

Reviewed By: wittgenst

fbshipit-source-id: a22641c18a8e7547b849732b3b917bd00d60dc6a
2020-07-03 06:16:44 -07:00
Thomas Orozco
de731a89fc mononoke/virtually_sharded_blobstore: log deduplicated puts
Summary:
If anything were to go wrong, we'd be happy to know which puts we ignored. So,
let's log them.

Reviewed By: farnz

Differential Revision: D22356714

fbshipit-source-id: 5687bf0fc426421c5f28b99a9004d87c97106695
2020-07-03 05:53:11 -07:00
Thomas Orozco
be1bac6c06 mononoke/virtually_sharded_blobstore: expose this in cmdlib
Summary:
Eventually, I plan to make this the default, but for now I'd like to make it
something we can choose to turn on or off as a cmd argument (so we can start
with the experimental tier and Fastreplay).

Note that this mixes volatile vs. non-volatile pools when accessing the pools
for cacheblob. In practice, those pools are actually volatile, it's just that
things don't break if you access them as non-volatile.

Reviewed By: farnz

Differential Revision: D22356537

fbshipit-source-id: 53071b6b21ca5727d422e10f685061c709114ae7
2020-07-03 05:53:11 -07:00
Thomas Orozco
c68100f46e mononoke/virtually_sharded_blobstore: spawn before taking semaphores
Summary:
I canaried this on Fastreplay, but unfortunately that showed that sometimes we
just deadlock, or get so slow we might as well be deadlocked (and it happens
pretty quickly, after ~20 minutes). I tried spawning all the `get()` futures,
and that fixes the problem (but it makes gettreepack noticeably slower), so
that suggests something somewhere is creating futures, polling them a little
bit, then never driving them to completion.

For better or worse, I'd experienced the exact same problem with the
ContextConcurrencyBlobstore (my initial attempt at QOS, which also used a
semaphore), so I was kinda expecting this to happen.

In a sense, this nice because I we've suspected there were things like that in
the codebase for a while (e.g. with the occasional SQL timeout we see where it
looks like MySQL responds fast but we don't actually poll it until past the
timeout), and it gives us a somewhat convenient repro.

In another sense, it's annoying because it blocks this work :)

So, to work around the problem, for now, let's spawn futures to force the work
to complete when a semaphore is held. I originally had an unconditional spawn
here, but that is too expensive for the cache-hit code path and slows things
down (by about ~2x).

However, having it only if we'll query the blobstore isn't not as expensive,
and that seems to be fine (in fact it is a ~20% p99 perf improvement,
though the exact number depends on the number of shard we use for this, which I've had to tweak a bit).

https://pxl.cl/1c18H

I did find what I think is one potential instance of this problem in
`bounded_traversal_stream`, which is that we never try to poll `scheduled` to
completion. Instead, we just poll for the next ready future in our
FuturesUnordered, and if that turns out to be synchronous work then we'll just
re-enqueue more stuff (and sort of starve async work in this FuturesUnordered).

I tried updating bounded traversal to try a fairer implementation (which polls
everything), but that wasn't sufficient to make the problem go away, so I think
this is something we have to just accept for now (note that this actually has
some interesting perf impact in isolation: it's a free ~20% perf improvement on
p95+: https://pxl.cl/1c192

see 976b6b92293a0912147c09aa222b2957873ef0df if you're curious

Reviewed By: farnz

Differential Revision: D22332478

fbshipit-source-id: 885b84cda1abc15c51fbc5dd34473e49338e13f4
2020-07-03 05:53:11 -07:00
Thomas Orozco
2082621d51 mononoke/virtually_sharded_blobstore: add ODS metrics
Summary: Those are useful to track.

Reviewed By: farnz

Differential Revision: D22332480

fbshipit-source-id: 43f5cd7121c4aa497d961015e7c16973615798d1
2020-07-03 05:53:10 -07:00
Thomas Orozco
1db62473f2 mononoke/virtually_sharded_blobstore: track perf counters
Summary: Like it says in the title. Those are useful!

Reviewed By: farnz

Differential Revision: D22332479

fbshipit-source-id: f9bddad75fcbed2593c675f9ba45965bd87f1575
2020-07-03 05:53:10 -07:00
Thomas Orozco
c297024a52 mononoke/virtually_sharded_blobstore: do not delay reads for uncacheable data
Summary:
The goal of this blobstore is to dedupe reads by waiting for them to finish and
hit cache instead (and also to dedupe writes, but that's not relevant here).

However, this is not a desirable feature if a blob cannot be stored in cache,
because then we're serializing accesses for no good reason. So, when that
happens, we store "this cannot be stored in cache", and we release reads
immediately.

Reviewed By: farnz

Differential Revision: D22285269

fbshipit-source-id: be7f1c73dc36b6d58c5075172e5e3c5764eed894
2020-07-03 05:53:10 -07:00
Thomas Orozco
b9319a4d32 mononoke/virtually_sharded_blobstore: add a newtype for cache keys + a prefix
Summary:
I'm going to store things that aren't quite the exact blobs in here, so on the
off chance that we somehow have two caching blobstores (the old one and this
one) that use the same pools, we should avoid collisions by using a prefix.

And, since I'm going to use a prefix, I'm adding a newtype wrapper to not use
the prefixed key as the blobstore key by accident.

Differential Revision: D22285271

fbshipit-source-id: e352ba107f205958fa33af829c8a46896c24027e
2020-07-03 05:53:10 -07:00
Thomas Orozco
bf3c2e19f0 mononoke/virtually_sharded_blobstore: a caching blobstore that deduplicates
Summary:
This introduces a caching blobstore that deduplicates reads and writes. The
underlying motivation is to improve performance for processes that might find
themsleves inadvertently reading the same data concurrently from a bunch of
independent callsites (most of Mononoke), or writing the same bit of data over
and over again.

The latter is particularly useful for things like commit cloud backfilling in
WWW, where some logger commits include the same blob being written hundreds or
thousands of times, and cause us to overload the underlying Zippy shard in
Manifold. This is however a problem we've also encountered in the past in e.g.
the deleted files manifest and had to solve there. This blobstore is a little
different in the sense that it solves that problem for all writers.

This comes at the cost of writes being dropped if they're known to be
redundant, which prevents updates through this blobstore. This is desirable for
most of Mononoke, but not all (notably, for skiplist updates it's not great).

For now, I'm going to add this behind an opt-in flag, and later on I'm planning
to make it opt-out and turn it off there (I'm thinking to use the CoreContext
for this).

Reviewed By: farnz

Differential Revision: D22285270

fbshipit-source-id: 4e3502ab2da52a3a0e0e471cd9bc4c10b84a3cc5
2020-07-03 05:53:10 -07:00
Kostia Balytskyi
f210326656 blobstore_healer: log the speed with which queue rows are deleted
Summary: This allowed me to compare two alternative approaches to queue draining, and generally seems like a useful thing to do.

Reviewed By: krallin

Differential Revision: D22364733

fbshipit-source-id: b6c76295c85b4dec6f0bfd7107c30bb4e4a28942
2020-07-03 05:09:56 -07:00
Johan Schuijt-Li
2b69716461 push compat() down one level from main
Summary: Migrate to new-style futures

Reviewed By: ikostia

Differential Revision: D22365232

fbshipit-source-id: 08ddd50be1c34fe90a453f369cea2e45323b63db
2020-07-03 02:36:09 -07:00
Stanislau Hlebik
2d24ddf2e1 mononoke: add --all-types to backfill_derive_data single
Summary: It's useful to derive all enabled derived data at once

Reviewed By: krallin

Differential Revision: D22336338

fbshipit-source-id: 54bc27ab2c23c175913fc02e6bf05d18a54c249c
2020-07-03 00:20:58 -07:00
Stanislau Hlebik
2a54f281f2 mononoke: add an option to perform a stack move in megarepotool
Summary:
We've recently added an option to perform a stack move in megarepolib. A "stack
move" it's a stack of commits that move a files according to a mover. Now let's
expose it in the megarepotool

Reviewed By: ikostia

Differential Revision: D22312486

fbshipit-source-id: 878d4b2575ed2930bbbf0b9b35e51bb41393e622
2020-07-03 00:18:41 -07:00
svcscm
f253e58298 Updating submodules
Summary:
GitHub commits:

2e51ba9559
7c83334acc
db12ec5705
fc6f6e4342
55279f1fa7
00de699096
d2886f9636
38d2b1d39c
6aa6dc0a42
8c9203d0f5
fcb8d28c4f
90aa3fd4b8
f1cf1af013

Reviewed By: wittgenst

fbshipit-source-id: 53b19327c9fbef491c9d9c78a903e0e56ad19938
2020-07-03 00:18:40 -07:00
svcscm
c175e5c125 Updating submodules
Summary:
GitHub commits:

9091ae6a31
e3980a2837
de6fb9a1ba
63977f902b
b1f77bce82
373d5ac485
932b92facc
c768946dde
8720dfe702
fa815f5f51
76b4cf9465
5cfd83fdb6
2d3077441f

Reviewed By: wittgenst

fbshipit-source-id: 73282e9e73ff88d8be747c6afdfd48c1372450ac
2020-07-02 19:35:47 -07:00
Jun Wu
fe1aadc238 util: do not print large dict for smarttraceback
Summary:
Printing it can take too much time.

Use a larger threshold than `list` or `set`,  since `hg` commonly uses a dict
for command line options, and that can exceeds 8 items.

As we're here, also fix the traceback order so it's "most recent call last".

Reviewed By: kulshrax

Differential Revision: D22362003

fbshipit-source-id: 3d2f4664bec6b4cfaf42b8e5d2fc47b0f3d96411
2020-07-02 19:19:10 -07:00
Jun Wu
fdd4fb1fcd github: do not test edenapi crate
Summary: It was moved by D22305173 (fdba0b98c2). Skip testing it.

Reviewed By: kulshrax

Differential Revision: D22364199

fbshipit-source-id: 3e205daa5aac517020664005a6f95d0292674bc3
2020-07-02 18:46:28 -07:00
Lukas Piatkowski
c763ab4b40 eden/scm: provide getdeps.py way of building eden/scm on GitHub
Summary:
In order to do what the title says, this diff does:
1. Add the `eden/oss/.../third-party/rust/.../Cargo.toml` files. As mentioned in the previous diff, those are required by GitHub so that the third party dependencies that are local in fbsource are properly defined with a "git" dependency in order for Cargo to "link" crates properly.
2. Changes to `eden/scm/Makefile` to add build/install commands for getdeps to invoke. Those command knowing that they are called from withing getdeps context they link the dependencies brought by getdeps into their proper places that match their folder layout in fbsource. Those Makefile commands also pass a GETDEPS_BUILD env to the setup.py invocations so that it knows it is being called withing a getdeps build.
3. Changes to `eden/scm/setup.py` that add "thriftasset" that makes use of the getdeps.py provided "thrift" binary to build .py files out of thrift files.
4. Changes to `distutils_rust` to use the vendored crates dir provided by getdeps.
5. Changes to `getdeps/builder.py` and `getdeps/manifest.py` that enable more fine-grained configuratior of how Makefile builds are invoked.
6. Changes to `getdeps/buildopts.py` and `getdeps/manifest.py` to disable overriding PATH and pkgconfig env, so that "eden/scm" builds in getdeps using system libraries rather than getdeps-provided ones (NOTE: I've tried to use getdeps provided libraries, but the trickiest bit was that Rust links with Python, which is currently not providable by getdeps, so if you try to build everything the system provided Python libraries will collide with getdeps provided ones)
7. Added `opensource/fbcode_builder/manifests/eden_scm` for the getdeps build.

Reviewed By: quark-zju

Differential Revision: D22336485

fbshipit-source-id: 244d10c9e06ee83de61e97e62a1f2a2184d2312f
2020-07-02 17:53:37 -07:00
svcscm
5c91d2e6bd Updating submodules
Summary:
GitHub commits:

8a93edf4fb
538e973ed1

Reviewed By: wittgenst

fbshipit-source-id: add90d8d04496819755f7557cabc88959348ec34
2020-07-02 17:53:36 -07:00
svcscm
3cda2137f2 Updating submodules
Summary:
GitHub commits:

fe4e0b7302
3a6dae12db
50c40bdc13
00c2cb7456
a680a7ea37
77f4764e6a
439c71eaa0
0cc8a37bdd
5d0065e629

Reviewed By: wittgenst

fbshipit-source-id: b5f33bd47c19289261b40f37bef283bd26d153b3
2020-07-02 16:07:05 -07:00
Stefan Filip
232caa0cd6 tests: update test-*ruststores-repack for Mononoke
Summary:
The test case assumed that clone would return data in order from the server.
That is not a valid assumption and Mononoke doesn't return data in order.

Reviewed By: xavierd

Differential Revision: D22364636

fbshipit-source-id: abfcbe0074a08c9a76c42d351ce5c792eb65e24f
2020-07-02 14:37:41 -07:00
svcscm
bf6b7c2126 Updating submodules
Summary:
GitHub commits:

d10611a1c0
97f6257229
52d59e0c93
6cd8792289
1a7e0743cb

Reviewed By: wittgenst

fbshipit-source-id: bab79f89206dba522c96009910aebe7423f30df7
2020-07-02 14:16:58 -07:00
Jun Wu
358e35f067 test-globalrevs: use modern configs
Summary:
Enable mutation, remotenames and narrow-heads (for clients).

Some `x` commits are shown because the server repo cannot hide them.

Reviewed By: DurhamG

Differential Revision: D22200501

fbshipit-source-id: 35abe5198025598f4f5ef8807c2eaa6f3b2f2318
2020-07-02 13:22:34 -07:00
Jun Wu
ed8fd9202c hgsql: disable modern features more aggressively
Summary:
D21894320 (64585a5895) tries to disable features from hgsql. However tests can
run hg commands with hgsql extension turned on or off, and that
messes up things.

Let's test the hgsql requirement and disable related features unconditionally
so we have more confident that the related features won't be turned on
accidentally.

Previously, the `initclient` helper function will create repos with the `hgsql`
requirement. Since we're using the repo requirement to disable features, disable
`hgsql` temporarily during `initclient` so that the client repos can still have
modern features like visibility and narrow-heads.

The globalrevs test is affected and temporarily disabled. It will be fixed in
follow-ups.

Reviewed By: DurhamG

Differential Revision: D22200507

fbshipit-source-id: 3715464430a9115bb00122a8dfa03b1abf9d03ab
2020-07-02 13:22:34 -07:00
Jun Wu
eceb3179c4 hgsql: make CorruptionError more verbose
Summary: This helps debugging some hgsql issues especially in test-globalrevs.

Reviewed By: DurhamG

Differential Revision: D22200509

fbshipit-source-id: cddf79a00951d135dee20a5e9fb3a486abad2ff7
2020-07-02 13:22:34 -07:00
Jun Wu
31b655c656 testutil: make traceback in dott test more useful
Summary:
Without the change the traceback looks like:

```
Traceback (most recent call last):
  File "eden/scm/tests/testutil/dott/shobj.py", line 103, in __del__
    out = self.output
  File "eden/scm/tests/testutil/dott/shobj.py", line 67, in output
    self._output = func(*args[1:], **kwargs) or ""
  File "eden/scm/tests/test-globalrevs-t.py", line 499, in checkglobalrevs
    isgreaterglobalrev("desc('h2')", "desc('g1')") == ""
  File "eden/scm/tests/test-globalrevs-t.py", line 480, in isgreaterglobalrev
    if getglobalrev(left) > getglobalrev(right):
  File "eden/scm/tests/test-globalrevs-t.py", line 469, in getglobalrev
    return int(s)
ValueError: invalid literal for int() with base 10: ''
```

There is no clue about who calls `checkglobalrevs`.

With this change the extra context is provided and it's easy to find out the code is around line 517:

```
Before executing:
  File "eden/scm/tests/test-globalrevs-t.py", line 517, in <module>
    sh % "cd ../master2"
  File "eden/scm/tests/testutil/dott/shobj.py", line 161, in __mod__
    return LazyCommand(command)
  File "eden/scm/tests/testutil/dott/shobj.py", line 38, in __init__
    _checkdelayedexception()
  File "eden/scm/tests/testutil/dott/shobj.py", line 204, in _checkdelayedexception
    traceback.print_stack()
```

Note: before D19649475 (a634526801) the traceback looks like more useful but it's hard to
create that traceback on Python 3:

```
Traceback (most recent call last):
  File "eden/scm/tests/test-globalrevs-t.py", line 517, in <module>
    sh % "cd ../master2"
  File "eden/scm/tests/testutil/dott/shobj.py", line 161, in __mod__
    return LazyCommand(command)
  File "eden/scm/tests/testutil/dott/shobj.py", line 38, in __init__
    _checkdelayedexception()
  File "eden/scm/tests/testutil/dott/shobj.py", line 202, in _checkdelayedexception
    exec("raise exctype, excvalue, tb")
  File "eden/scm/tests/testutil/dott/shobj.py", line 103, in __del__
    out = self.output
  File "eden/scm/tests/testutil/dott/shobj.py", line 67, in output
    self._output = func(*args[1:], **kwargs) or ""
  File "eden/scm/tests/test-globalrevs-t.py", line 499, in checkglobalrevs
    isgreaterglobalrev("desc('h2')", "desc('g1')") == ""
  File "eden/scm/tests/test-globalrevs-t.py", line 480, in isgreaterglobalrev
    if getglobalrev(left) > getglobalrev(right):
  File "eden/scm/tests/test-globalrevs-t.py", line 469, in getglobalrev
    return int(s)
ValueError: invalid literal for int() with base 10: ''
```

Reviewed By: DurhamG

Differential Revision: D22200508

fbshipit-source-id: 07088eac72763f890cc847b9991d79fed18ee0ef
2020-07-02 13:22:34 -07:00
Jun Wu
c08c19572e mutation: drop copypreds handling in the Python land
Summary: The Rust land handles this.

Reviewed By: markbt

Differential Revision: D22174953

fbshipit-source-id: 8023e698fde2463c20028e979d37b677a536c327
2020-07-02 13:22:34 -07:00
Jun Wu
868c2b0108 mutationstore: copy entries automatically on flush
Summary:
Similar to D7121487 (af8ecd5f80) but works for mutation store. This makes sure at the Rust
layer, mutation entries won't get lost after rebasing or metaeditting a set of
commits where a subset of the commits being edited has mutation relations.

Unlike the Python layer, the Rust layer works for mutation chains. Therefore
some of the tests changes.

Reviewed By: markbt

Differential Revision: D22174991

fbshipit-source-id: d62f7c1071fc71f939ec8771ac5968b992aa253c
2020-07-02 13:22:34 -07:00
Jun Wu
2f1d35b06e mutationstore: break cycles for get_dag
Summary: Avoids infinite loops creating the DAG.

Reviewed By: markbt

Differential Revision: D22174978

fbshipit-source-id: ec54665a9d5b88a97fce988456041f9aabc824d6
2020-07-02 13:22:34 -07:00
Jun Wu
d647045a5f mutation: lift "1:1" restriction for get_dag
Summary:
Enforcing 1:1 handling is causing trouble for multiple reasons:
- Test cases like "Metaedit with descendant folded commits" in
  test-mutation.t requires handling non-1:1 entries.
- Currently operations like `metaedit-copy` uses two predecessors (edited,
  copied). It is considered 1:1 rewrite (rewriting 1 commit to
  another 1 commit). However, it does not use multiple records, therefore
  cannot be distinguished from `fold`, which is not 1:1 rewrite and also
  has multiple predecessors. We want to include the `metaedit-copy`
  entries in the 1:1 DAG too.

Therefore lift the 1:1 restriction and let's see how it works.

Reviewed By: markbt

Differential Revision: D22175008

fbshipit-source-id: 84d870dbcc433a0d0e5611a83c93781bfa59d035
2020-07-02 13:22:34 -07:00
Jun Wu
d745424bf9 dag: add a utility to help break cycles
Summary:
This makes it easier to remove cycles in other places.

There are probably fancier and more efficient algorithm for this.
For now I just wrote one that is easy to verify correctness.

Reviewed By: markbt

Differential Revision: D22174975

fbshipit-source-id: 8a2dc755e4bc0b066eda5f42a51208c92409f2f9
2020-07-02 13:22:34 -07:00
Jun Wu
fb27a098a0 test-amend-metaedit: enhance metaedit-copy test cases
Summary: Showing that it does not work for a chain of amends (or metaedits).

Reviewed By: DurhamG

Differential Revision: D22174968

fbshipit-source-id: ff942042b69f96e1cc7092a7003cf4608730a66f
2020-07-02 13:22:33 -07:00
Jun Wu
39b5e99ad8 directaccess: remove extension
Summary:
With narrow-heads (enabled in production and most tests) directaccess is a
no-op. Remove the extension.

Reviewed By: DurhamG

Differential Revision: D22174990

fbshipit-source-id: 662f800cebc3cc7614fa921e4367c4d1f8806eb4
2020-07-02 13:22:33 -07:00
Jun Wu
e8e68cb945 test-rebase-copy-relations: use modern configs
Summary:
Switch to modern configs. It does not quite work right yet, which will be fixed
in follow-ups.

Reviewed By: DurhamG

Differential Revision: D22174966

fbshipit-source-id: d52234ec588a3a92512635291f64fa1819a4424b
2020-07-02 13:22:33 -07:00
Jun Wu
b7e7daec2d test-infinitepush-bundlestore: use modern setups
Summary: It passes with some changes.

Reviewed By: DurhamG

Differential Revision: D22174988

fbshipit-source-id: 1fcefa81d979e01291cb9f646adcfdae46bb47f1
2020-07-02 13:22:33 -07:00
Jun Wu
53b6ab3861 test-debugstrip: use modern setups
Summary: It passes with minor change.

Reviewed By: DurhamG

Differential Revision: D22175006

fbshipit-source-id: 6c5416fc64b065ea1d39eb2ed0cf3e4f873c4cb9
2020-07-02 13:22:33 -07:00
Jun Wu
177d97adb6 test-rename-after-merge: enable visibility
Summary:
This is one of the very few tests that didn't have visibility on.
The blocker was `hg rollback` behavior difference.

Reviewed By: DurhamG

Differential Revision: D22175000

fbshipit-source-id: 4067818c3cde8dade1a47671e8df6558ae348f6e
2020-07-02 13:22:33 -07:00
Jun Wu
0b77c3a7b1 test-visibility: enable narrow-heads
Summary:
Made some edits, mostly about `--hidden`, and phases to make the test
compatible.

Mutation store cannot represent undo (unamend) relationship and hidden
but non-obsoleted commits show up as `o`.

Reviewed By: DurhamG

Differential Revision: D22175001

fbshipit-source-id: 75dcc66238b4f465f5ac183278359d133758faf6
2020-07-02 13:22:33 -07:00
Jun Wu
b3e8cbb300 test-commitcloud: enable mutation for some tests
Summary: They are compatible now.

Reviewed By: DurhamG

Differential Revision: D22174970

fbshipit-source-id: f4825420529dac7c63a28df6c41aa40a254a4b33
2020-07-02 13:22:33 -07:00
Jun Wu
50e46cb0b3 test-fb-hgext-pushrebase: enable modern configs
Summary:
With lots of edits, mostly maintaining bookmarks, the test is compatible with
modern configs.

Reviewed By: DurhamG

Differential Revision: D22174985

fbshipit-source-id: b88cd25da36ebcde908c1b63a15f90e82d1692cb
2020-07-02 13:22:32 -07:00
Jun Wu
7ab22e23a0 test-fb-hgext-pushrebase: make it a bit more verbose
Summary: This makes it easier to see changes with modern configuration.

Reviewed By: DurhamG

Differential Revision: D22174957

fbshipit-source-id: c49f270281c06debd055435362b95509093c1e99
2020-07-02 13:22:32 -07:00
Jun Wu
93e45ff8a4 test-histedit-fold: enable modern configs
Summary: With some edits the test is compatible with modern configs.

Reviewed By: DurhamG

Differential Revision: D22174972

fbshipit-source-id: 971740f3a94048c15fcfc09436df7e09b3e169b8
2020-07-02 13:22:32 -07:00
Jun Wu
a47ebe97c2 test-histedit-edit: enable modern configs
Summary:
Stripping does break `histedit --abort`. Seems not worthwhile to support since
strip is rare. Edit the test so it's using modern configs.

Reviewed By: DurhamG

Differential Revision: D22174965

fbshipit-source-id: 090b92946311e192b9ee36ffa27718a62fc791ee
2020-07-02 13:22:32 -07:00
Jun Wu
47fdcbf7ac test-fb-hgext-remotefilelog-linknodes: enable modern configs
Summary: This test needs a few edits to be compatible with modern setup.

Reviewed By: DurhamG

Differential Revision: D22175002

fbshipit-source-id: 1b75b6535a46bd21d746259778b079f6c53a94d0
2020-07-02 13:22:32 -07:00
Jun Wu
4155a7063c test-fb-hgext-remotefilelog-local: enable modern configs
Summary: This test needs a few edits to be compatible with modern setup.

Reviewed By: DurhamG

Differential Revision: D22174969

fbshipit-source-id: 8f9c1b926d05070cfd8f17ca539693fa580de421
2020-07-02 13:22:32 -07:00
Jun Wu
de7450f3fb test-fb-hgext-treemanifest: enable modern configs
Summary:
This test needs some edits to be compatible with modern setup.  Some
tests about legacy features are removed.

Reviewed By: DurhamG

Differential Revision: D22174983

fbshipit-source-id: e62de2b9571f3366b9c3c4bbfdb66cd7d990e317
2020-07-02 13:22:32 -07:00
Jun Wu
ad33709d93 test-fb-hgext-treemanifest-treeonly: enable modern configs
Summary:
This test needs a lot manual edits to be compatible with modern setup.  Some
tests about legacy features are removed.

Reviewed By: DurhamG

Differential Revision: D22174976

fbshipit-source-id: 09ef10f94438753469ed8725a4b8a5bdfed177cf
2020-07-02 13:22:32 -07:00
Jun Wu
998f09b3ec test-fb-hgext-tweakdefaults: enable modern configs
Summary:
This test needs some manual edits to be compatible with modern setup.
Some tests about legacy features are removed.

Reviewed By: DurhamG

Differential Revision: D22174997

fbshipit-source-id: 0423a45c4d085f4b1128b11b5f0b9876ed82e950
2020-07-02 13:22:32 -07:00
Jun Wu
c84731b9b2 test-fb-hgext-tweakdefaults: migrate off revision numbers
Summary: This test needs some manual editing to fully migrate off revision numbers.

Reviewed By: DurhamG

Differential Revision: D22174980

fbshipit-source-id: baf2ea5f591870fa7560b8a9d23c2a357851e028
2020-07-02 13:22:31 -07:00