Index: src/tests/Makefile.am
===================================================================
--- src/tests/Makefile.am	(revision e3259583c2582617118cead4d2a6c73dbb4f6931)
+++ src/tests/Makefile.am	(revision f803a752ef5078f4687758c793402ab5c26215b2)
@@ -30,5 +30,5 @@
 # applies to both programs
 EXTRA_FLAGS =
-BUILD_FLAGS = -g -Wall -Wno-unused-function @CFA_FLAGS@ ${EXTRA_FLAGS}
+BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ ${EXTRA_FLAGS}
 TEST_FLAGS = $(if $(test), 2> .err/${@}.log, )
 CFLAGS = ${TEST_FLAGS} ${BUILD_FLAGS}
Index: src/tests/Makefile.in
===================================================================
--- src/tests/Makefile.in	(revision e3259583c2582617118cead4d2a6c73dbb4f6931)
+++ src/tests/Makefile.in	(revision f803a752ef5078f4687758c793402ab5c26215b2)
@@ -234,5 +234,5 @@
 # applies to both programs
 EXTRA_FLAGS = 
-BUILD_FLAGS = -g -Wall -Wno-unused-function @CFA_FLAGS@ ${EXTRA_FLAGS}
+BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ ${EXTRA_FLAGS}
 TEST_FLAGS = $(if $(test), 2> .err/${@}.log, )
 fstream_test_SOURCES = fstream_test.c
Index: src/tests/test.py
===================================================================
--- src/tests/test.py	(revision e3259583c2582617118cead4d2a6c73dbb4f6931)
+++ src/tests/test.py	(revision f803a752ef5078f4687758c793402ab5c26215b2)
@@ -28,5 +28,5 @@
 	sh('echo "void ?{}(int*a,int b){}int main(){return 0;}" > .dummy.c')
 	ret, out = sh("make .dummy -s", print2stdout=True)
-	
+
 	if ret != 0:
 		print("Failed to identify architecture:")
@@ -161,5 +161,5 @@
 
 	# build, skipping to next test on error
-	make_ret, _ = sh("""%s test=yes EXTRA_FLAGS="-quiet %s" %s 2> %s 1> /dev/null""" % (make_cmd, options, test.name, out_file), dry_run)
+	make_ret, _ = sh("""%s test=yes EXTRA_FLAGS="%s" %s 2> %s 1> /dev/null""" % (make_cmd, options, test.name, out_file), dry_run)
 
 	# if the make command succeds continue otherwise skip to diff
@@ -192,5 +192,5 @@
 		# fetch return code and error from the diff command
 		retcode, error = diff(".expect/%s.txt" % test.path, ".out/%s.log" % test.name, dry_run)
-	
+
 	# clean the executable
 	sh("rm -f %s > /dev/null 2>&1" % test.name, dry_run)
@@ -269,6 +269,6 @@
 if __name__ == "__main__":
 	#always run from same folder
-	chdir() 
-	
+	chdir()
+
 	# parse the command line arguments
 	options = getOptions()
