X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=regressions%2Ftest-launch-race.pl;h=5a660ceeb305754f8d7ab1bd0d36be2dab6cee86;hb=f23352aefd96dc873111e5e5d55ea22b30c3e0ad;hp=892353e143ad226400be05c3bea3fab3fabb4b37;hpb=c6478d6a01c210ef19735429d7602e3458733e25;p=libguestfs.git diff --git a/regressions/test-launch-race.pl b/regressions/test-launch-race.pl index 892353e..5a660ce 100755 --- a/regressions/test-launch-race.pl +++ b/regressions/test-launch-race.pl @@ -13,7 +13,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # Test that 2 simultaneous launches in a clean cache directory will both succeed @@ -25,6 +25,9 @@ use POSIX; use Sys::Guestfs; +# Allow this test to be skipped. +exit 0 if $ENV{SKIP_TEST_LAUNCH_RACE_PL}; + # Use a temporary TMPDIR to ensure it's clean my $tmpdir = tempdir (CLEANUP => 1); $ENV{TMPDIR} = $tmpdir;