Index: tests/concurrency/actors/dynamic.cfa
===================================================================
--- tests/concurrency/actors/dynamic.cfa	(revision 6a6e205dc434bc9868c1018598b6e19e86a80c3b)
+++ tests/concurrency/actors/dynamic.cfa	(revision c0beea3fb26bfb242919205329cfe48d876b6dd4)
@@ -37,5 +37,5 @@
 		if ( strcmp( argv[1], "d" ) != 0 ) {			// default ?
 			Times = ato( argv[1] );
-			if ( Times < 1 ) fallthru default;
+			if ( Times < 1 ) fallthrough default;
 		} // if
 	  case 1:											// use defaults
Index: tests/concurrency/actors/executor.cfa
===================================================================
--- tests/concurrency/actors/executor.cfa	(revision 6a6e205dc434bc9868c1018598b6e19e86a80c3b)
+++ tests/concurrency/actors/executor.cfa	(revision c0beea3fb26bfb242919205329cfe48d876b6dd4)
@@ -41,30 +41,30 @@
 		if ( strcmp( argv[6], "d" ) != 0 ) {			// default ?
 			BufSize = ato( argv[6] );
-			if ( BufSize < 0 ) fallthru default;
+			if ( BufSize < 0 ) fallthrough default;
 		} // if
 	  case 6:
 		if ( strcmp( argv[5], "d" ) != 0 ) {			// default ?
 			Batch = ato( argv[5] );
-			if ( Batch < 1 ) fallthru default;
+			if ( Batch < 1 ) fallthrough default;
 		} // if
 	  case 5:
 		if ( strcmp( argv[4], "d" ) != 0 ) {			// default ?
 			Processors = ato( argv[4] );
-			if ( Processors < 1 ) fallthru default;
+			if ( Processors < 1 ) fallthrough default;
 		} // if
 	  case 4:
 		if ( strcmp( argv[3], "d" ) != 0 ) {			// default ?
 			Rounds = ato( argv[3] );
-			if ( Rounds < 1 ) fallthru default;
+			if ( Rounds < 1 ) fallthrough default;
 		} // if
 	  case 3:
 		if ( strcmp( argv[2], "d" ) != 0 ) {			// default ?
 			Set = ato( argv[2] );
-			if ( Set < 1 ) fallthru default;
+			if ( Set < 1 ) fallthrough default;
 		} // if
 	  case 2:
 		if ( strcmp( argv[1], "d" ) != 0 ) {			// default ?
 			Actors = ato( argv[1] );
-			if ( Actors < 1 || Actors <= Set || Actors % Set != 0 ) fallthru default;
+			if ( Actors < 1 || Actors <= Set || Actors % Set != 0 ) fallthrough default;
 		} // if
 	  case 1:											// use defaults
Index: tests/concurrency/actors/matrixMultiply.cfa
===================================================================
--- tests/concurrency/actors/matrixMultiply.cfa	(revision 6a6e205dc434bc9868c1018598b6e19e86a80c3b)
+++ tests/concurrency/actors/matrixMultiply.cfa	(revision c0beea3fb26bfb242919205329cfe48d876b6dd4)
@@ -39,20 +39,20 @@
 		if ( strcmp( argv[4], "d" ) != 0 ) {			// default ?
 			Processors = ato( argv[4] );
-			if ( Processors < 1 ) fallthru default;
+			if ( Processors < 1 ) fallthrough default;
 		} // if
 	  case 4:
 		if ( strcmp( argv[3], "d" ) != 0 ) {			// default ?
 			xr = ato( argv[3] );
-			if ( xr < 1 ) fallthru default;
+			if ( xr < 1 ) fallthrough default;
 		} // if
 	  case 3:
 		if ( strcmp( argv[2], "d" ) != 0 ) {			// default ?
 			xc = ato( argv[2] );
-			if ( xc < 1 ) fallthru default;
+			if ( xc < 1 ) fallthrough default;
 		} // if
 	  case 2:
 		if ( strcmp( argv[1], "d" ) != 0 ) {			// default ?
 			yc = ato( argv[1] );
-			if ( yc < 1 ) fallthru default;
+			if ( yc < 1 ) fallthrough default;
 		} // if
 	  case 1:											// use defaults
Index: tests/concurrency/actors/static.cfa
===================================================================
--- tests/concurrency/actors/static.cfa	(revision 6a6e205dc434bc9868c1018598b6e19e86a80c3b)
+++ tests/concurrency/actors/static.cfa	(revision c0beea3fb26bfb242919205329cfe48d876b6dd4)
@@ -34,5 +34,5 @@
 		if ( strcmp( argv[1], "d" ) != 0 ) {			// default ?
 			Times = ato( argv[1] );
-			if ( Times < 1 ) fallthru default;
+			if ( Times < 1 ) fallthrough default;
 		} // if
 	  case 1:											// use defaults
