From 92318ee1fd0af5e7c5addc36134523e9886dbda3 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 12 May 2013 19:19:43 +0000 Subject: [PATCH] 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 --- tests/test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.45.2