Recognize "sandbox" user as indicating automatic testing.

The buildbot slaves actually use "sandbox" as the user name, not "buildbot",
so test for the former instead for the latter, see r73963.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73965 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2013-05-12 19:19:43 +00:00
parent 1a9961c430
commit 92318ee1fd

View File

@@ -425,7 +425,7 @@ extern bool IsAutomaticTest()
username.MakeLower();
s_isAutomatic = username.Matches("buildslave*") ||
username.Matches("buildbot*");
username.Matches("sandbox*");
}
return s_isAutomatic == 1;