Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix the flaky test
buck2/shed/static_interner
Summary: The `test_disposition` test was sharing the static `STRING_INTERNER` variable with `test_intern,` and both tests used the string `"hello"`. When tests run in parallel, if `test_intern` runs first, it causes `test_disposition` to fail. This fix adds a dedicated `TEST_DISPOSITION_STRING` interner to isolate the tests from each other. It also move the test downside to separate from tests using `STRING_INTERNER` Reviewed By: blackm00n Differential Revision: D67626618 fbshipit-source-id: 6d51485f919a4c4b09608a7afe36242dbc405d41
- Loading branch information