comparison scripts/path/savepath.m @ 28087:9cb04a9e81ec

rmdir: throw an error if operation fails and nargout == 0 (bug #57830). * dirfns.cc (Frmdir): Change DEFMETHODX macro invocation to include nargout variable. Check nargout, and for cases where "nargout == 0" and "status" indicates failure, throw an error. For cases where "nargout > 0", return 3-value octave_value_list in variable "retval". * file-io.cc, gzip.cc, dir.m, isfolder.m, mkdir.m, run.m, tar.m, unpack.m, zip.m, pathdef.m, savepath.m, configure_make.m, install.m, uninstall.m, getpref.m, setpref.m, pkg.tst, publish.tst, system.tst: Change calls from "rmdir" to "sts = rmdir" so that an error is not unecessarily thrown in BIST tests and other clean up code.
author Rik <rik@octave.org>
date Mon, 17 Feb 2020 20:02:18 -0800
parents a4268efb7334
children 3cac3ceb9629
comparison
equal deleted inserted replaced
28086:32af6bb2a120 28087:9cb04a9e81ec
228 %! unwind_protect_cleanup 228 %! unwind_protect_cleanup
229 %! cd (old_dir); 229 %! cd (old_dir);
230 %! end_unwind_protect 230 %! end_unwind_protect
231 %! unwind_protect_cleanup 231 %! unwind_protect_cleanup
232 %! confirm_recursive_rmdir (false, "local"); 232 %! confirm_recursive_rmdir (false, "local");
233 %! rmdir (test_dir, "s"); 233 %! sts = rmdir (test_dir, "s");
234 %! unlink (fname); 234 %! unlink (fname);
235 %! end_unwind_protect 235 %! end_unwind_protect