diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-10 09:38:24 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-10 09:38:24 (GMT) |
commit | 20e0998a323f571ddb5f5aaf9789dcc8fa6b06b7 (patch) | |
tree | 5bf526ad5222d8d900a0d62391fcb03c686ebda4 /tests/unixFCmd.test | |
parent | 5d4116b63829ba46f63a5ec7434710edc4b98943 (diff) | |
download | tcl-20e0998a323f571ddb5f5aaf9789dcc8fa6b06b7.zip tcl-20e0998a323f571ddb5f5aaf9789dcc8fa6b06b7.tar.gz tcl-20e0998a323f571ddb5f5aaf9789dcc8fa6b06b7.tar.bz2 |
Use more 0o??? syntax for octal. Clean up build *.yml files
Diffstat (limited to 'tests/unixFCmd.test')
-rw-r--r-- | tests/unixFCmd.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unixFCmd.test b/tests/unixFCmd.test index 991e489..4b1687f 100644 --- a/tests/unixFCmd.test +++ b/tests/unixFCmd.test @@ -137,11 +137,11 @@ test unixFCmd-1.7 {TclpRenameFile: EXDEV} -setup { cleanup } -constraints {unix notRoot} -body { file mkdir foo/bar - file attr foo -perm 040555 + file attr foo -perm 0o40555 file rename foo/bar /tmp } -returnCodes error -cleanup { catch {file delete /tmp/bar} - catch {file attr foo -perm 040777} + catch {file attr foo -perm 0o40777} catch {file delete -force foo} } -match glob -result {*: permission denied} test unixFCmd-1.8 {Checking EINTR Bug} {unix notRoot nonPortable} { |