Index: tests/concurrent/mutexstmt/locks.cfa
===================================================================
--- tests/concurrent/mutexstmt/locks.cfa	(revision d00d58175bd0e1df5524a7109ec9127ccb133764)
+++ tests/concurrent/mutexstmt/locks.cfa	(revision af67ee1f32ef27e0564c9ed7e5944d401215e3b1)
@@ -1,3 +1,3 @@
-#include <mutex_stmt_locks.hfa>
+#include <mutex_stmt.hfa>
 #include <locks.hfa>
 
@@ -13,5 +13,5 @@
 	for (unsigned int i = 0; i < num_times; i++) {
 		mutex ( m1 ) count++;
-		mutex ( m1 ) {
+		mutex ( m1 ) { 
 			assert(!insideFlag);
 			insideFlag = true;
@@ -65,5 +65,5 @@
 	printf("Start Test: single lock mutual exclusion\n");
 	{
-		T_Mutex t[10];
+		T_Mutex t[1];
 	}
 	printf("End Test: single lock mutual exclusion\n");
Index: tests/concurrent/mutexstmt/monitors.cfa
===================================================================
--- tests/concurrent/mutexstmt/monitors.cfa	(revision d00d58175bd0e1df5524a7109ec9127ccb133764)
+++ tests/concurrent/mutexstmt/monitors.cfa	(revision af67ee1f32ef27e0564c9ed7e5944d401215e3b1)
@@ -1,3 +1,4 @@
 #include <monitor.hfa>
+#include <mutex_stmt.hfa>
 #include <stdio.h>
 #include <stdlib.hfa>
@@ -13,4 +14,5 @@
 bool insideFlag = false;
 int count = 0;
+bool startFlag = false;
 
 void main( T_Mutex & this ) {
