Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Removed unused variable warning
authorhenricasanova <henric@hawaii.edu>
Thu, 4 Jul 2019 14:07:30 +0000 (16:07 +0200)
committerhenricasanova <henric@hawaii.edu>
Thu, 4 Jul 2019 14:07:30 +0000 (16:07 +0200)
MANIFEST.in
teshsuite/s4u/activity-lifecycle/activity-lifecycle.cpp

index d2ec587..d29c4d9 100644 (file)
@@ -543,6 +543,7 @@ include src/surf/cpu_cas01.cpp
 include src/surf/cpu_interface.cpp
 include src/surf/cpu_ti.cpp
 include src/surf/network_cm02.cpp
+include src/surf/link_wifi.cpp
 include src/surf/network_constant.cpp
 include src/surf/network_interface.cpp
 include src/surf/PropertyHolder.cpp
index 11feb0c..70e0fc8 100644 (file)
@@ -482,7 +482,7 @@ static void test_link_off_during_wait_any()
   const double start = simgrid::s4u::Engine::get_clock();
 
   simgrid::s4u::ActorPtr receiver = simgrid::s4u::Actor::create("receiver", all_hosts[1], [&start]() {
-    assert_exit(false, 2);
+    assert_exit(false, start + 2);
     bool receiver_got_network_failure_execution = false;
     bool receiver_got_base_execution = false;
     int *data;
@@ -503,7 +503,7 @@ static void test_link_off_during_wait_any()
   });
 
   simgrid::s4u::ActorPtr sender = simgrid::s4u::Actor::create("sender", all_hosts[2], [&start]() {
-    assert_exit(false, 2);
+    assert_exit(false, start + 2);
     int data = 42;
     bool sender_got_network_failure_execution = false;
     bool sender_got_base_execution = false;