Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision 6a1bdfdbaf1e60268cb7d469339ab09f961202ac)
+++ Jenkinsfile	(revision cc640aadedb54d666759f45d5d89d72bd7bf5be3)
@@ -33,5 +33,6 @@
 		dir ('src/tests') {
 			if (full_build) {
-				sh 'make all-tests'
+				sh 'make all-tests debug=yes'
+				sh 'make all-tests debug=no'
 			}
 			else {
Index: src/tests/Makefile.am
===================================================================
--- src/tests/Makefile.am	(revision 6a1bdfdbaf1e60268cb7d469339ab09f961202ac)
+++ src/tests/Makefile.am	(revision cc640aadedb54d666759f45d5d89d72bd7bf5be3)
@@ -15,4 +15,6 @@
 ###############################################################################
 
+debug=yes
+
 # applies to both programs
 CFLAGS = -g -Wall -Wno-unused-function @CFA_FLAGS@ # TEMPORARY: does not build with -O2
@@ -30,5 +32,5 @@
 
 all-tests :
-	@+python test.py --all		# '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
+	@+python test.py --all --debug=${debug}		# '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
 
 clean-local :
@@ -64,3 +66,2 @@
 memberCtors-ERR1: memberCtors.c
 	${CC} ${CFLAGS} -DERR1 ${<} -o ${@}
-
Index: src/tests/Makefile.in
===================================================================
--- src/tests/Makefile.in	(revision 6a1bdfdbaf1e60268cb7d469339ab09f961202ac)
+++ src/tests/Makefile.in	(revision cc640aadedb54d666759f45d5d89d72bd7bf5be3)
@@ -223,4 +223,5 @@
 top_builddir = @top_builddir@
 top_srcdir = @top_srcdir@
+debug = yes
 fstream_test_SOURCES = fstream_test.c
 vector_test_SOURCES = vector/vector_int.c vector/array.c vector/vector_test.c
@@ -652,5 +653,5 @@
 
 all-tests :
-	@+python test.py --all		# '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
+	@+python test.py --all --debug=${debug}		# '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
 
 clean-local :
