Compare commits

..

4 Commits

Author SHA1 Message Date
f407f0f837 malloc Überprüfung 2025-12-15 14:36:30 +01:00
56430b513e Merge branch 'tests-improvments' 2025-12-15 08:46:59 +01:00
ffdd2439dd deleted useless comments 2025-12-15 08:44:07 +01:00
d591cef798 small changes 2025-12-15 08:03:00 +01:00
5 changed files with 14 additions and 15 deletions

View File

@ -108,6 +108,8 @@ int main(void)
{
UNITY_BEGIN();
printf("\n============================\n Bintree tests\n============================\n");
RUN_TEST(test_addToTree_single_element);
RUN_TEST(test_addToTree_multiple_elements_and_size);
RUN_TEST(test_addToTree_duplicate_detection);

View File

@ -16,9 +16,7 @@ static void dublicateRandomEntry (unsigned int *numbers, unsigned int len)
if (numbers && len > 2)
{
unsigned int dubIndx = rand() % (len - 1);
unsigned int copyIndx;
copyIndx = rand() % len;
unsigned int copyIndx = rand() % len;
numbers[len - 1] = numbers[dubIndx];
@ -69,7 +67,7 @@ unsigned int *createNumbers(unsigned int len)
// Duplicate one random entry
dublicateRandomEntry(numbers, len);
clearTree(root); //Notwendigkeit muss noch restlichem Code entnommen werden
clearTree(root);
return numbers;
}

View File

@ -61,6 +61,8 @@ int main(void)
{
UNITY_BEGIN();
printf("\n============================\n Numbers tests\n============================\n");
RUN_TEST(test_createNumbers_no_null);
RUN_TEST(test_createNumbers_has_exactly_one_duplicate);
RUN_TEST(test_createNumbers_has_correct_value_range);

View File

@ -15,6 +15,10 @@ StackNode *push(StackNode *stack, void *data)
{
StackNode *newNode;
newNode = (StackNode *)malloc(sizeof(StackNode));
if (!newNode)
printf("Speicherfehler: nicht genug Speicher");
return stack;
newNode->data = data;
// ,-→ bedeutet Liste war leer - das neue Element hat keinen Nachfolger (next = NULL)

View File

@ -1,12 +1,6 @@
#include "timer.h"
#ifdef __linux__
// Defines strict posix compliance for CLOCK_MONOTONIC
#define _POSIX_C_SOURCE 199309L
#include <time.h>
#endif
#if __APPLE__ || __linux__
#if __APPLE__
#include <sys/time.h>
static struct timespec start = {0, 0};
@ -27,8 +21,7 @@ double stopTimer()
double measuredSeconds = (double)delta_us / 1000000.;
if (start.tv_nsec > 0)
{
if(start.tv_nsec > 0) {
start.tv_nsec = 0;
start.tv_sec = 0;
}