Index: src/tests/Makefile.in
===================================================================
--- src/tests/Makefile.in	(revision a6dd5b07abeceb22acbbeb3004d39953c61d6af9)
+++ src/tests/Makefile.in	(revision 72e2ea09917002f1bb895d9266ba2e37829264f0)
@@ -638,5 +638,5 @@
 
 all-tests :
-	@+python test.py --all			# '@' => do not echo command (SILENT), '+' =>
+	@+python test.py --all		# '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
 
 clean-local :
Index: src/tests/labelledExit.c
===================================================================
--- src/tests/labelledExit.c	(revision a6dd5b07abeceb22acbbeb3004d39953c61d6af9)
+++ src/tests/labelledExit.c	(revision 72e2ea09917002f1bb895d9266ba2e37829264f0)
@@ -1,2 +1,17 @@
+// 
+// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
+//
+// The contents of this file are covered under the licence agreement in the
+// file "LICENCE" distributed with Cforall.
+// 
+// labelledExit.c -- 
+// 
+// Author           : Peter A. Buhr
+// Created On       : Wed Aug 10 07:29:39 2016
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Wed Aug 10 07:30:15 2016
+// Update Count     : 1
+// 
+
 int foo() {
   	int i;
@@ -136,14 +151,12 @@
 	else
 		i += 1;
-
 }
 
-int main(int argc, char const *argv[]) {
+int main( int argc, char const *argv[] ) {
 	/* code */
-	return 0;
 }
 
 // Local Variables: //
 // tab-width: 4 //
-// compile-command: "cfa LabelledExit.c" //
+// compile-command: "cfa labelledExit.c" //
 // End: //
