cpython/Lib/test/libregrtest
Greg Price 455122a009 bpo-37936: Systematically distinguish rooted vs. unrooted in .gitignore (GH-15823)
A root cause of bpo-37936 is that it's easy to write a .gitignore
rule that's intended to apply to a specific file (e.g., the
`pyconfig.h` generated by `./configure`) but actually applies to all
similarly-named files in the tree (e.g., `PC/pyconfig.h`.)

Specifically, any rule with no non-trailing slashes is applied in an
"unrooted" way, to files anywhere in the tree.  This means that if we
write the rules in the most obvious-looking way, then

 * for specific files we want to ignore that happen to be in
   subdirectories (like `Modules/config.c`), the rule will work
   as intended, staying "rooted" to the top of the tree; but

 * when a specific file we want to ignore happens to be at the root of
   the repo (like `platform`), then the obvious rule (`platform`) will
   apply much more broadly than intended: if someone tries to add a
   file or directory named `platform` somewhere else in the tree, it
   will unexpectedly get ignored.

That's surprising behavior that can make the .gitignore file's
behavior feel finicky and unpredictable.

To avoid it, we can simply always give a rule "rooted" behavior when
that's what's intended, by systematically using leading slashes.

Further, to help make the pattern obvious when looking at the file and
minimize any need for thinking about the syntax when adding new rules:
separate the rules into one group for each type, with brief comments
identifying them.

For most of these rules it's clear whether they're meant to be rooted
or unrooted, but in a handful of cases I've only guessed.  In that
case the safer default (the choice that won't hide information) is the
narrower, rooted meaning, with a leading slash.  If for some of these
the unrooted meaning is desired after all, it'll be easy to move them
to the unrooted section at the top.
2019-09-11 10:25:26 +01:00
..
__init__.py bpo-37473: Don't import importlib ASAP in tests (GH-14661) 2019-07-14 19:31:12 +02:00
cmdline.py bpo-36044: Reduce number of unit tests run for PGO build (GH-14702) 2019-07-22 12:54:25 -07:00
main.py bpo-37531: Fix regrtest timeout for subprocesses (GH-15072) 2019-08-14 14:18:51 +02:00
pgo.py bpo-36044: Avoid warnings in Windows PGO build and add lzma, bz2 and sqlite coverage (GH-14985) 2019-07-28 18:01:12 -07:00
refleak.py bpo-36725: regrtest: add TestResult type (GH-12960) 2019-04-26 04:08:53 +02:00
runtest.py bpo-37936: Systematically distinguish rooted vs. unrooted in .gitignore (GH-15823) 2019-09-11 10:25:26 +01:00
runtest_mp.py bpo-37531: Fix regrtest _timedout() function on timeout (GH-15419) 2019-08-23 11:27:24 +01:00
save_env.py bpo-37421: urllib.request tests call urlcleanup() (GH-14529) 2019-07-02 14:50:19 +02:00
setup.py bpo-34602: Avoid failures setting macOS stack resource limit (GH-14546) 2019-07-02 03:12:18 -04:00
utils.py bpo-37069: regrtest uses sys.unraisablehook (GH-13759) 2019-06-13 01:09:04 +02:00
win_utils.py bpo-36511: Fix failures in Windows ARM32 buildbot (GH-15181) 2019-08-08 16:12:33 -07:00