Hi! > please help me by telling that how to disable the function "tst_rmdir()" in > LTP. > this function is causing lots of failures in many testcases. > mainly tests in dio testcase are failing because of some error in this > function. > i tried lots of things,like made the function "tst_rmdir()" to skip. Bt > still there is same error. > the error is like dat----- "Tst_rmdir():failed:errno=16: device or > resource busy." > please help me out as soon as possible. >
Function tst_rmdir() does cleanup of temporary directories used for testing, when it's failing either you test setup or system is broken. Hmm errno 16 says that someone is still using these directories when test is going to delete them and exit. You could try to track this down with lsof and fuser. -- Cyril Hrubis [email protected] ------------------------------------------------------------------------------ This SF.net email is sponsored by Make an app they can't live without Enter the BlackBerry Developer Challenge http://p.sf.net/sfu/RIM-dev2dev _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
