tests: undef NDEBUG in tests

So we can run tests even when compiled with -DNDEBUG

Change-Id: Iebb8399409e2b0a5172529e08bcac188956fd925
Signed-off-by: Rashmica Gupta <rashmica@linux.ibm.com>
diff --git a/tests/test_seq.c b/tests/test_seq.c
index 22242ba..0e3dd15 100644
--- a/tests/test_seq.c
+++ b/tests/test_seq.c
@@ -1,5 +1,9 @@
 /* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later */
 
+#ifdef NDEBUG
+#undef NDEBUG
+#endif
+
 #include <assert.h>
 #include <stdlib.h>
 #include <stdio.h>