From f8fdb500cc705e2b8b4a74166ceb2c6d8cee3fd3 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 4 Sep 2018 14:02:11 +0300 Subject: Rename .test/test{} to .testscript/testscript{} --- tests/cfg-create.testscript | 75 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 tests/cfg-create.testscript (limited to 'tests/cfg-create.testscript') diff --git a/tests/cfg-create.testscript b/tests/cfg-create.testscript new file mode 100644 index 0000000..d5e58e0 --- /dev/null +++ b/tests/cfg-create.testscript @@ -0,0 +1,75 @@ +# file : tests/cfg-create.testscript +# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd +# license : MIT; see accompanying LICENSE file + +.include common.testscript + +pkg_status += -d cfg + +: non-empty +: +$* 2>>/~%EOE% != 0 +error: directory ./ is not empty + info: use --wipe to clean it up but be careful +EOE + +: dir +: +{ + test.arguments += -d cfg + test.cleanups += &cfg/*** + + : no-vars-mods + : + { + $* 2>>/~%EOE%; + %created new configuration in .+/cfg/% + EOE + + $pkg_status libfoo >'libfoo unknown' + } + + : conf-var + : + { + $* "config.install.root=$~/opt" 2>>/~%EOE%; + %created new configuration in .+/cfg/% + EOE + + $pkg_status libfoo >'libfoo unknown'; + + cat cfg/build/config.build >>/~"%EOO%" + %.+ + %config.install.root = '?.+/opt/'?% + %.+ + EOO + } + + : module + : + { + $* cxx "config.cxx=$config.cxx" 2>>/~%EOE%; + %created new configuration in .+/cfg/% + EOE + + $pkg_status libfoo >'libfoo unknown'; + + cat cfg/build/config.build >>/~"%EOO%" + %.+ + %config.cxx = .+% + %.+ + EOO + } + + : wipe + : + { + mkdir -p cfg/foo/bar &!cfg/ &!cfg/foo/ &!cfg/foo/bar/; + + $* --wipe 2>>/~%EOE%; + %created new configuration in .+/cfg/% + EOE + + $pkg_status libfoo >'libfoo unknown' + } +} -- cgit v1.1