Skip android test installation batch files during gauntlet build discovery

[FYI] clayton.langford

#ROBOMERGE-OWNER: ryan.vance
#ROBOMERGE-AUTHOR: josh.engebretson
#ROBOMERGE-SOURCE: CL 5228413 via CL 5228420 via CL 5229166 via CL 5233431
#ROBOMERGE-BOT: DEVVR (Main -> Dev-VR)

[CL 5254365 by josh engebretson in Dev-VR branch]
This commit is contained in:
josh engebretson
2019-02-28 18:08:31 -05:00
parent dedfc456d9
commit b2f2e6d306
@@ -71,8 +71,16 @@ namespace Gauntlet
Match Info = Regex.Match(Fi.Name, RegEx, RegexOptions.IgnoreCase);
if (Info.Success == false)
bool TestInstall = Fi.Name.EndsWith("_TEST.bat", StringComparison.OrdinalIgnoreCase);
// filter out non-matching or test installation batch files
// test installation scripts are intended to be manually invoked
if (Info.Success == false || TestInstall)
{
if (TestInstall)
{
Log.Verbose("Ignoring test installation batch file {0}", Fi.Name);
}
continue;
}