Disable NS3Dependency test on normal test runs, it takes a long time to run.
authorClaudio-Daniel Freire <claudio-daniel.freire@inria.fr>
Mon, 2 May 2011 16:41:57 +0000 (18:41 +0200)
committerClaudio-Daniel Freire <claudio-daniel.freire@inria.fr>
Mon, 2 May 2011 16:41:57 +0000 (18:41 +0200)
test/testbeds/planetlab/execute.py

index 68864e4..4d0fa75 100755 (executable)
@@ -419,7 +419,10 @@ echo 'OKIDOKI'
         # asserts at the end, to make sure there's proper cleanup
         self.assertEqual(ping_result, "")
 
-    @test_util.skipUnless(test_util.pl_auth() is not None, "Test requires PlanetLab authentication info (PL_USER and PL_PASS environment variables)")
+    @test_util.skipUnless(test_util.pl_auth() is not None, 
+        "Test requires PlanetLab authentication info (PL_USER and PL_PASS environment variables)")
+    @test_util.skipUnless(os.environ.get('NEPI_FULL_TESTS','').lower() in ('1','yes','true','on'),
+        "Test is expensive, requires NEPI_FULL_TESTS=yes")
     def test_ns3_depends(self):
         instance = self.make_instance()