From 5007870b52aa549971824959a55ad3bb886f09e0 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 3 Sep 2018 16:37:32 +0200 Subject: Rename .test/test{} to .testscript/testscript{} --- tests/test/script/builtin/touch.test | 88 ------------------------------------ 1 file changed, 88 deletions(-) delete mode 100644 tests/test/script/builtin/touch.test (limited to 'tests/test/script/builtin/touch.test') diff --git a/tests/test/script/builtin/touch.test b/tests/test/script/builtin/touch.test deleted file mode 100644 index 04391bd..0000000 --- a/tests/test/script/builtin/touch.test +++ /dev/null @@ -1,88 +0,0 @@ -# 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 -} -- cgit v1.1