# 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 touches an existing file doesn't 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" == 1' && $b : empty-path : : Test touching an empty path. : $c <"touch: invalid path ''" == 1 EOI : dir-update : : Test touching an existing directory. : $c <~"%touch: cannot create/update .+: .+%" == 1 EOI