Looks like the else is missing since in both the cases where flag is set to one or not we get the test broken print.

Signed-off-by: Max Stirling <vickyirobot@gmail.com>

--- vmsplice01.c	2008-06-11 17:33:57.367473000 +0530
+++ vmsplice01_new.c	2008-06-13 18:21:07.077042000 +0530
@@ -220,8 +220,9 @@ static int vmsplice_test(void)
                 if(tst_is_cwd_nfs()) {
 				if (flag == 1)
 					printf("vmsplice01    1  PASS  :  vmplice() passes\n");
-                                tst_brkm(TCONF, cleanup, "Cannot do splice() on a file located on an NFS filesystem");
-                }
+				else
+					tst_brkm(TCONF, cleanup, "Cannot do splice() on a file located on an NFS filesystem");
+		}
 
 
 		ret = mysplice(pipes[0], NULL, fd_out, &offset, written, 0);
