brintos

brintos / linux-shallow public Read only

0
0
Text · 837 B · aa8a266 Raw
28 lines · plain
1tdc.py will look for plugins in a directory plugins off the cwd.2Make a set of numbered symbolic links from there to the actual plugins.3Eg:4 5tdc.py6plugin-lib/7plugins/8    __init__.py9    10-rootPlugin.py -> ../plugin-lib/rootPlugin.py10    20-valgrindPlugin.py -> ../plugin-lib/valgrindPlugin.py11    30-nsPlugin.py -> ../plugin-lib/nsPlugin.py12 13 14tdc.py will find them and use them.15 16 17rootPlugin18    Check if the uid is root.  If not, bail out.19 20valgrindPlugin21    Run the command under test with valgrind, and produce an extra set of TAP results for the memory tests.22    This plugin will write files to the cwd, called vgnd-xxx.log.  These will contain23    the valgrind output for test xxx.  Any file matching the glob 'vgnd-*.log' will be24    deleted at the end of the run.25 26nsPlugin27    Run all the commands in a network namespace.28