From 7dbccbbdf794a47e8744caf6097423528dbb63a1 Mon Sep 17 00:00:00 2001 From: dario Date: Wed, 14 Feb 2024 13:49:03 +0100 Subject: [PATCH] Updated test case descriptions --- src/cases/case10.cpp | 2 +- src/cases/case11.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cases/case10.cpp b/src/cases/case10.cpp index bb45076..3a60fbe 100644 --- a/src/cases/case10.cpp +++ b/src/cases/case10.cpp @@ -49,7 +49,7 @@ namespace sta signal->notify(); - // This should notify the watchdog that this thread should be monitored. + // This should notify the watchdog that this thread should not be monitored. blocking( pointless_expensive_computation(); ) diff --git a/src/cases/case11.cpp b/src/cases/case11.cpp index ef43b51..f8e27a9 100644 --- a/src/cases/case11.cpp +++ b/src/cases/case11.cpp @@ -1,12 +1,12 @@ /* - * case10.cpp + * case11.cpp * * Created on: Feb 7, 2024 * Author: Dario */ /** - * Tests if threads are properly terminated and started because of state transitions. The thread status is updated accordingly and no memory leaks occur. + * Tests if a thread with IGNORED status is properly ignored. */ #include #ifdef TASTY_CASE_11