# file : tests/test/script/builtin/touch.test # copyright : Copyright (c) 2014-2018 Code Synthesis Ltd # license : MIT; see accompanying LICENSE file .include ../common.test : file : $c <'touch a' && $b : file-create : : Test that file is created. If it didn't then 'rm' would fail. : $c <=a; touch a EOI : no-cleanup : : Test that touching an existing file does not register cleanup. If it does : then the file would be removed while leaving the embedded scope, and so the : cleanup registered by the first touch would fail. : $c <"touch: missing file" != 0' && $b : empty-path : : Test touching an empty path. : $c <"touch: invalid path ''" != 0 EOI : dir-update : : Test touching an existing directory. : $c <~'%touch: cannot create/update .+: .+%' != 0 EOI : after : { : success : $c <'touch: missing --after option value' != 0 EOI : not-exists : $c <~"%touch: cannot obtain file '.+a' modification time: .+%" != 0 EOI }