Add druntime's rt directory to the list of directories to omit in the test/tools/sanitize_json.d #9992
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR is in support of dlang/druntime#2634
That PR publicly imports a couple of modules from druntime's
rtdirectory intoobject.d. It causes the test https://github.com/dlang/dmd/blob/master/test/compilable/json2.d to fail because it adds those modules to the json output, but thesanitize_json.dtool has not been programmed to eliminate thertdirectory like it has forstd,core, andetc. See https://auto-tester.puremagic.com/show-run.ghtml?projectid=1&runid=3659831&isPull=trueThis PR adds
rtto the list of directories to omit in thesantitize_json.dtool.This PR is required for dlang/druntime#2634 to pass the test suite.