diff --git a/runtime_util/runtime_util.h b/runtime_util/runtime_util.h index 21be60ab..dcb31bd6 100644 --- a/runtime_util/runtime_util.h +++ b/runtime_util/runtime_util.h @@ -34,7 +34,7 @@ #define CHALLENGE_SOCKET "/tmp/challenge.sock" // The interval (microseconds) at which we wait between detecting connects/disconnects -#define POLL_INTERVAL 100000 +#define POLL_INTERVAL 200000 // enumerated names of processes typedef enum process { diff --git a/shm_wrapper/shm_stop.c b/shm_wrapper/shm_stop.c index 9108d7b3..aad409cd 100644 --- a/shm_wrapper/shm_stop.c +++ b/shm_wrapper/shm_stop.c @@ -63,7 +63,7 @@ int main() { // Using shm_init() calls shm_stop() automatically on process exit, so semaphores and shm blocks will be closed on exit - log_printf(INFO, "SHM destroyed. Runtime Funtime is no more"); + log_printf(INFO, "SHM destroyed. RUNTIME FUNTIME HAD TOO MUCH FUN!!!"); /* * Under normal production circumstances, this program should never be run (it only runs when net_handler, executor, or dev_handler diff --git a/tests/integration/tc_71_13.c b/tests/integration/tc_71_13.c index 18765323..250c9d03 100644 --- a/tests/integration/tc_71_13.c +++ b/tests/integration/tc_71_13.c @@ -41,7 +41,7 @@ int main() { } for (int i = 0; i < NUM_TO_CONNECT; i++) { sprintf(expected_output, "UnstableTestDevice (0x%016llX) timed out!", (uint64_t) i); - in_rest_of_output(expected_output); + in_output(expected_output); } in_rest_of_output(no_device); return 0; diff --git a/tests/integration/tc_71_14.c b/tests/integration/tc_71_14.c index 94d6536e..8cea81ee 100644 --- a/tests/integration/tc_71_14.c +++ b/tests/integration/tc_71_14.c @@ -96,7 +96,7 @@ int main() { // All UnstableTestDevices should time out for (int i = NUM_GENERAL; i < NUM_UNSTABLE + NUM_GENERAL; i++) { sprintf(expected_output, "UnstableTestDevice (0x%016llX) timed out!", (uint64_t) i); - in_rest_of_output(expected_output); + in_output(expected_output); } // GeneralTestDevices remain in shm after UnstableTestDevices time out for (int i = 0; i < NUM_GENERAL; i++) {