swc-installation-test-2.py: Also look for extension-less paths
authorW. Trevor King <wking@tremily.us>
Thu, 21 Mar 2013 16:18:23 +0000 (12:18 -0400)
committerW. Trevor King <wking@tremily.us>
Thu, 21 Mar 2013 16:18:23 +0000 (12:18 -0400)
commit03b86fc8cdeb06a88d5c19c61556e7eb2db48560
tree88198c96ab5836981d933bd41ea278465b028059
parent22a8bd53df308ccd81cc2606287efaaf9b9b316b
swc-installation-test-2.py: Also look for extension-less paths

Before this commit, CommandDependency checked self.command (with an
optional extension determined by distutils).  If that check failed to
produce a version stream, we cycled through a list of additional
hard-coded paths.  For example:  Notepad++ used:

  self.command = 'notepad++'
  self.paths = [
      _os.path.join(
          _ROOT_PATH, 'Program Files', 'Notepad++', 'notepad++.exe'),
      ]

Because some MS Windows commands lack the expected '.exe' extension,
but are still present and detected by a number of shells, we should
also look for the extension-less version of the command.

I consolidated the _get_version_stream() logic to build a single list
of paths and loop through it looking for success (and accumulating
errors).  This makes the handling of self.paths less of a special
case, and sets us up for any additional path mangling we may need to
support other poorly standardized OSes ;).
setup/swc-installation-test-2.py