aboutsummaryrefslogtreecommitdiff
path: root/tests/cfg-create.test
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-09-04 14:02:11 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-09-04 14:02:11 +0300
commitf8fdb500cc705e2b8b4a74166ceb2c6d8cee3fd3 (patch)
tree3f94b0b79ebad275904b9dc4a4165326ff598492 /tests/cfg-create.test
parentf727c2b8fe273a12d059826291523060dab4b512 (diff)
Rename .test/test{} to .testscript/testscript{}
Diffstat (limited to 'tests/cfg-create.test')
-rw-r--r--tests/cfg-create.test75
1 files changed, 0 insertions, 75 deletions
diff --git a/tests/cfg-create.test b/tests/cfg-create.test
deleted file mode 100644
index 5466a6e..0000000
--- a/tests/cfg-create.test
+++ /dev/null
@@ -1,75 +0,0 @@
-# file : tests/cfg-create.test
-# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
-# license : MIT; see accompanying LICENSE file
-
-.include common.test
-
-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'
- }
-}