From a08924b28a0edcf993048cf7d1c5b6f85474b73d Mon Sep 17 00:00:00 2001 From: ljjimene <58920976+ljjimene@users.noreply.github.com> Date: Thu, 1 Oct 2020 22:54:56 -0400 Subject: [PATCH] Add successful tests print (#140) When tests pass, a message is printed to avoid ambiguity. --- tst/test.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tst/test.c b/tst/test.c index c82d4ab..c60db0d 100644 --- a/tst/test.c +++ b/tst/test.c @@ -1,3 +1,4 @@ +#include #include "test.h" #if STUB_MALLOC @@ -86,5 +87,6 @@ int main(void) test_stack(); test_queue(); test_priority_queue(); + printf("Tests Passed\n"); return 0; }