From b44d82ec8db4146f0851fdf0ef5f5d7492f34953 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Wed, 26 Sep 2012 12:04:02 +0100 Subject: [PATCH] Revert "test-launch-race: Add SELinux label to $TMPDIR." Because RHBZ#860235 has been fixed in selinux-policy 3.11.1-25.fc18. This reverts commit 7fc838cca334ccf3d388c5598ff7fae88dbe4513. --- tests/protocol/test-launch-race.pl | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/protocol/test-launch-race.pl b/tests/protocol/test-launch-race.pl index 7e1330bec..f933bfeb5 100755 --- a/tests/protocol/test-launch-race.pl +++ b/tests/protocol/test-launch-race.pl @@ -32,11 +32,6 @@ exit 77 if $ENV{SKIP_TEST_LAUNCH_RACE_PL}; my $tmpdir = tempdir (CLEANUP => 1); $ENV{TMPDIR} = $tmpdir; -# Temporary workaround for RHBZ#860235 which can be removed -# once that bug is fixed. -system ("chcon system_u:object_r:tmp_t:s0 $tmpdir") == 0 - or warn "chcon: $tmpdir: $!"; - my $pid = fork(); die ("fork failed: $!") if ($pid < 0);