changeset 6327:4905c543b301

[project @ 2007-02-19 19:59:26 by jwe]
author jwe
date Mon, 19 Feb 2007 19:59:26 +0000
parents 129ef2ae319f
children a7a2f1596b4b
files test/ChangeLog test/test_system.m
diffstat 2 files changed, 8 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/test/ChangeLog	Sun Feb 18 14:01:27 2007 +0000
+++ b/test/ChangeLog	Mon Feb 19 19:59:26 2007 +0000
@@ -1,3 +1,8 @@
+2007-02-19  John W. Eaton  <jwe@octave.org>
+
+	* test_system.m: Handle confirm_recursive_rmdir as function
+	instead of built-in variable.
+
 2007-02-07  John W. Eaton  <jwe@octave.org>
 
 	* fntests.m: Add plea for help writing tests.
--- a/test/test_system.m	Sun Feb 18 14:01:27 2007 +0000
+++ b/test/test_system.m	Mon Feb 19 19:59:26 2007 +0000
@@ -246,10 +246,10 @@
 
 %% test/octave.test/system/rmdir-2.m
 %!test
-%! crr = confirm_recursive_rmdir;
-%! confirm_recursive_rmdir = 0;
+%! crr = confirm_recursive_rmdir ();
+%! confirm_recursive_rmdir (0);
 %! assert(!rmdir ("foo", "s"));
-%! confirm_recursive_rmdir = crr;
+%! confirm_recursive_rmdir (crr);
 
 %% FIXME This test messes up the path it seems!! Why?
 %% test/octave.test/system/umask-1.m