From: Vadim Zeitlin Date: Sun, 12 May 2013 19:19:43 +0000 (+0000) Subject: Recognize "sandbox" user as indicating automatic testing. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/92318ee1fd0af5e7c5addc36134523e9886dbda3?ds=inline 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 --- diff --git a/tests/test.cpp b/tests/test.cpp index 6b05835137..cdb57c535a 100644 --- a/tests/test.cpp +++ b/tests/test.cpp @@ -425,7 +425,7 @@ extern bool IsAutomaticTest() username.MakeLower(); s_isAutomatic = username.Matches("buildslave*") || - username.Matches("buildbot*"); + username.Matches("sandbox*"); } return s_isAutomatic == 1;