From: "Brenda J. Butler" <b...@mojatatu.com> Date: Tue, 31 Oct 2017 14:27:28 -0400
> Move the config customization into a site-local file > tdc_config_local.py, so that updates of the tdc test > software does not require hand-editing of the config. > This patch includes a template for the site-local > customization file. > > In addition, this makes it easy to revert to a stock > tdc environment for testing the test framework and/or > the core tests. > > Also it makes it harder for any custom config to be > submitted back to the kernel tdc. > > Signed-off-by: Brenda J. Butler <b...@mojatatu.com> Please always remove trailing empty lines in files, GIT even warns about this when one tries to apply the patch: > @@ -17,3 +17,17 @@ NAMES = { > # Name of the namespace to use > 'NS': 'tcut' > } > + ... > +# example adding values to ENVIR, without editing tdc_config.py > +ENVIR['VALGRIND_LIB'] = '/usr/lib/valgrind' > +ENVIR['VALGRIND_BIN'] = '/usr/bin/valgrind' > +ENVIR['VGDB_BIN'] = '/usr/bin/vgdb' > + I fixed it up this time, but please be mindful of this in the future. Thanks.