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:
@@ -425,7 +425,7 @@ extern bool IsAutomaticTest()
|
||||
|
||||
username.MakeLower();
|
||||
s_isAutomatic = username.Matches("buildslave*") ||
|
||||
username.Matches("buildbot*");
|
||||
username.Matches("sandbox*");
|
||||
}
|
||||
|
||||
return s_isAutomatic == 1;
|
||||
|
Reference in New Issue
Block a user