summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm-yaml-numeric-parser-fuzzer/DummyYAMLNumericParserFuzzer.cpp
diff options
context:
space:
mode:
authorJames Y Knight <jyknight@google.com>2018-11-29 16:46:34 +0000
committerJames Y Knight <jyknight@google.com>2018-11-29 16:46:34 +0000
commit3c24bd09bb2de3f8d3c03c7ec02c066d1bc49d6f (patch)
tree5479be29864754a5ce0bf8035ceb281f9087e7f4 /llvm/tools/llvm-yaml-numeric-parser-fuzzer/DummyYAMLNumericParserFuzzer.cpp
parent515b91cdefcb0c02ab06443ec2aca01ff02a993c (diff)
downloadbcm5719-llvm-3c24bd09bb2de3f8d3c03c7ec02c066d1bc49d6f.tar.gz
bcm5719-llvm-3c24bd09bb2de3f8d3c03c7ec02c066d1bc49d6f.zip
git-llvm: Fix incremental population of svn tree.
"svn update --depth=..." is, annoyingly, not a specification of the desired depth, but rather a _limit_ added on top of the "sticky" depth in the working-directory. However, if the directory doesn't exist yet, then it sets the sticky depth of the new directory entries. Unfortunately, the svn command-line has no way of expanding the depth of a directory from "empty" to "files", without also removing any already-expanded subdirectories. The way you're supposed to increase the depth of an existing directory is via --set-depth, but --set-depth=files will also remove any subdirs which were already requested. This change avoids getting into the state of ever needing to increase the depth of an existing directory from "empty" to "files" in the first place, by: 1. Use svn update --depth=files, not --depth=immediates. The latter has the effect of checking out the subdirectories and marking them as depth=empty. The former excludes sub-directories from the list of entries, which avoids the problem. 2. Explicitly populate missing parent directories. Using --parents seemed nice and easy, but it marks the parent dirs as depth=empty. Instead, check out parents explicitly if they're missing. llvm-svn: 347883
Diffstat (limited to 'llvm/tools/llvm-yaml-numeric-parser-fuzzer/DummyYAMLNumericParserFuzzer.cpp')
0 files changed, 0 insertions, 0 deletions
OpenPOWER on IntegriCloud