Adding +x to unti test files
authorAlina Quereilhac <alina.quereilhac@inria.fr>
Fri, 1 Aug 2014 09:40:58 +0000 (11:40 +0200)
committerAlina Quereilhac <alina.quereilhac@inria.fr>
Fri, 1 Aug 2014 09:40:58 +0000 (11:40 +0200)
13 files changed:
test/resources/linux/ccn/ccncat.py [changed mode: 0644->0755]
test/resources/linux/ccn/ccnpeek.py [changed mode: 0644->0755]
test/resources/linux/ccn/ccnping.py [changed mode: 0644->0755]
test/resources/linux/ccn/fibentry.py [changed mode: 0644->0755]
test/resources/linux/ns3/ccn/ns3dceccn.py [changed mode: 0644->0755]
test/resources/linux/ns3/ccn/ns3dceccnpeek.py [changed mode: 0644->0755]
test/resources/linux/ns3/ns3client.py [changed mode: 0644->0755]
test/resources/linux/ns3/ns3dceapplication.py [changed mode: 0644->0755]
test/resources/linux/ns3/ns3dceping.py [changed mode: 0644->0755]
test/resources/linux/ns3/ns3simulation.py [changed mode: 0644->0755]
test/resources/omf/omf6_vlc_wrong_critical.py [changed mode: 0644->0755]
test/resources/omf/omf6_vlc_wrong_non_critical.py [changed mode: 0644->0755]
test/resources/omf/set_hook.py [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
index 8528f69..e3ef9ec
@@ -136,6 +136,10 @@ class LinuxNS3DceApplicationTest(unittest.TestCase):
         self.fedora_user = "inria_nepi"
         self.fedora_identity = "%s/.ssh/id_rsa_planetlab" % (os.environ['HOME'])
 
+        self.ubuntu_host = "roseval.pl.sophia.inria.fr"
+        self.ubuntu_user = "inria_nepi"
+        self.ubuntu_identity = "%s/.ssh/id_rsa" % (os.environ['HOME'])
     @skipIfNotAlive
     def t_dce_ping(self, host, user = None, identity = None):
         ec = ExperimentController(exp_id = "test-dce-ping")
@@ -343,12 +347,18 @@ class LinuxNS3DceApplicationTest(unittest.TestCase):
     def test_dce_ping_fedora(self):
         self.t_dce_ping(self.fedora_host, self.fedora_user, self.fedora_identity)
 
+    def test_dce_ping_ubuntu(self):
+        self.t_dce_ping(self.ubuntu_host, self.ubuntu_user, self.ubuntu_identity)
+
     def test_dce_ping_local(self):
         self.t_dce_ping("localhost")
 
     def test_dce_ccn_fedora(self):
         self.t_dce_ccn(self.fedora_host, self.fedora_user, self.fedora_identity)
 
+    def test_dce_ccn_ubuntu(self):
+        self.t_dce_ccn(self.ubuntu_host, self.ubuntu_user, self.ubuntu_identity)
+
     def test_dce_ccn_local(self):
         self.t_dce_ccn("localhost")
 
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)