From ffa0839de796fbefc48bacc4777648ff19b3fee6 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 8 Sep 2017 16:16:11 +0200 Subject: Add ability to pass scope to buildfile functions, add $install.resolve() --- tests/function/install/buildfile | 5 +++++ tests/function/install/testscript | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 tests/function/install/buildfile create mode 100644 tests/function/install/testscript (limited to 'tests') diff --git a/tests/function/install/buildfile b/tests/function/install/buildfile new file mode 100644 index 0000000..356ca77 --- /dev/null +++ b/tests/function/install/buildfile @@ -0,0 +1,5 @@ +# file : tests/function/install/buildfile +# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd +# license : MIT; see accompanying LICENSE file + +./: test{testscript} $b diff --git a/tests/function/install/testscript b/tests/function/install/testscript new file mode 100644 index 0000000..b0a0172 --- /dev/null +++ b/tests/function/install/testscript @@ -0,0 +1,33 @@ +# file : tests/function/install/testscript +# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd +# license : MIT; see accompanying LICENSE file + +.include ../../common.test + ++cat <+build/bootstrap.build +using config +using install +EOI + +root = ($cxx.target.class != 'windows' ? '/usr/' : 'C:\') + ++cat <<"EOI" >=build/config.build +config.version = 1 +config.install.root = $root +EOI + +: realize +: +{ + : existing + : + a = ($cxx.target.class != 'windows' ? '/usr/lib/a/' : 'C:\lib\a\'); + $* <'print $install.resolve([dir_path] lib/a)' >$a + + : non-existing + : + $* <'print $install.resolve([dir_path] foo/a)' 2>>EOE != 0 + error: unknown installation directory name 'foo' + info: did you forget to specify config.install.foo? + EOE +} -- cgit v1.1