@@ -301,7 +301,7 @@ ATF_TC_BODY(override, tc)
301301 }
302302 exit (lua_tonumber (L , -1 ));
303303 }
304- atf_utils_wait (p , 0 , "[string \"os.execute(\"/usr/bin/true\")\"]:1: os.execute not available\n" , "" );
304+ atf_utils_wait (p , 1 , "[string \"os.execute(\"/usr/bin/true\")\"]:1: os.execute not available\n" , "" );
305305
306306 p = atf_utils_fork ();
307307 if (p == 0 ) {
@@ -310,7 +310,7 @@ ATF_TC_BODY(override, tc)
310310 }
311311 exit (lua_tonumber (L , -1 ));
312312 }
313- atf_utils_wait (p , 0 , "[string \"os.exit(1)\"]:1: os.exit not available\n" , "" );
313+ atf_utils_wait (p , 1 , "[string \"os.exit(1)\"]:1: os.exit not available\n" , "" );
314314
315315 int rootfd = open (getcwd (NULL , 0 ), O_DIRECTORY );
316316 lua_pushinteger (L , rootfd );
@@ -342,7 +342,7 @@ ATF_TC_BODY(override, tc)
342342 }
343343 exit (lua_tonumber (L , -1 ));
344344 }
345- atf_utils_wait (p , 0 , "[string \"os.remove(\"/bob\")...\"]:2: /bob: No such file or directory\n" , "" );
345+ atf_utils_wait (p , 1 , "[string \"os.remove(\"/bob\")...\"]:2: /bob: No such file or directory\n" , "" );
346346}
347347
348348ATF_TC_BODY (fileops , tc )
0 commit comments