diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-03 13:51:18 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-03 13:51:18 (GMT) |
commit | defc33228dae46280943ff6cc62d3a4a3284e056 (patch) | |
tree | 5b46d34089b0516431704c23338686ba913e602f /tests/cmdMZ.test | |
parent | 910d0222de6f3bd8fdf3b7c061cdb89581b2f2df (diff) | |
download | tcl-defc33228dae46280943ff6cc62d3a4a3284e056.zip tcl-defc33228dae46280943ff6cc62d3a4a3284e056.tar.gz tcl-defc33228dae46280943ff6cc62d3a4a3284e056.tar.bz2 |
Use 0o??? notation for octal numbers in tools and testcases in stead of 0???. Although it still works in 8.6, it is deprecated an will be removed in 9.0.
Diffstat (limited to 'tests/cmdMZ.test')
-rw-r--r-- | tests/cmdMZ.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cmdMZ.test b/tests/cmdMZ.test index 0f42f2f..fb2ca4a 100644 --- a/tests/cmdMZ.test +++ b/tests/cmdMZ.test @@ -63,7 +63,7 @@ test cmdMZ-1.4 {Tcl_PwdObjCmd: failure} -setup { # This test fails on various unix platforms (eg Linux) where permissions # caching causes this to fail. The caching is strictly incorrect, but we # have no control over that. - file attr . -permissions 000 + file attr . -permissions 0o000 pwd } -returnCodes error -cleanup { cd $cwd |