From 007ff75c583abfb2ac39ff04e31f905a587da570 Mon Sep 17 00:00:00 2001
From: "James E. Blair" <corvus@inaugust.com>
Date: Wed, 5 Sep 2012 16:15:35 +0000
Subject: [PATCH] Revert "Check tox runs for sudo attempts."

This reverts commit b69a11e3b4ba830965c47e695245336fb987a411

Change-Id: Ie33859cb0a51e2843851ecf18a7d907afee4b42a
Reviewed-on: https://review.openstack.org/12435
Approved: James E. Blair <corvus@inaugust.com>
Reviewed-by: James E. Blair <corvus@inaugust.com>
Tested-by: James E. Blair <corvus@inaugust.com>
---
 modules/jenkins/files/slave_scripts/run-tox.sh | 14 --------------
 1 file changed, 14 deletions(-)

diff --git a/modules/jenkins/files/slave_scripts/run-tox.sh b/modules/jenkins/files/slave_scripts/run-tox.sh
index 711f5c9d1d..0f22e42175 100755
--- a/modules/jenkins/files/slave_scripts/run-tox.sh
+++ b/modules/jenkins/files/slave_scripts/run-tox.sh
@@ -26,8 +26,6 @@ export NOSE_WITH_XUNIT=1
 export NOSE_WITH_HTML_OUTPUT=1
 export NOSE_HTML_OUT_FILE='nose_results.html'
 
-sudo /usr/local/jenkins/slave_scripts/jenkins-sudo-grep.sh pre
-
 tox -e$venv
 result=$?
 
@@ -36,16 +34,4 @@ echo "======================================================================"
 .tox/$venv/bin/pip freeze
 echo "======================================================================"
 
-sudo /usr/local/jenkins/slave_scripts/jenkins-sudo-grep.sh post
-sudoresult=$?
-
-if [ $sudoresult -ne "0" ]
-then
-    echo
-    echo "This test has failed because it attempted to execute commands"
-    echo "with sudo.  See above for the exact commands used."
-    echo
-    exit 1
-fi
-
 exit $result