blob: 75ccb4dbfcdfacbc8f04393e35a154225702926a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# file : tests/cc/libu/testscript
# copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
crosstest = false
test.arguments = config.cxx="$recall($cxx.path)"
.include ../../common.testscript
+cat <<EOI >+build/bootstrap.build
using test
EOI
+cat <<EOI >=build/root.build
cxx.std = latest
using cxx
hxx{*}: extension = hxx
cxx{*}: extension = cxx
exe{*}: test = true
EOI
# Common source files that are symlinked in the test directories if used.
#
+cat <<EOI >=foo.hxx
#ifndef LIBFOO_EXPORT
# define LIBFOO_EXPORT
#endif
LIBFOO_EXPORT extern int f;
EOI
+cat <<EOI >=foo.cxx
#include <foo.hxx>
int f;
EOI
+cat <<EOI >=bar.cxx
#include <foo.hxx>
struct b { b () {++f;} } b_;
EOI
+cat <<EOI >=driver.cxx
#include <cassert>
#include <foo.hxx>
int main () {assert (f != 0);}
EOI
: basic
:
ln -s ../foo.hxx ../foo.cxx ../bar.cxx ../driver.cxx ./;
$* test clean <<EOI
cc.poptions += "-I$src_base"
./: exe{foo}: cxx{driver} libue{foo}
./: lib{foo}: libul{foo}
{libue libul}{foo}: cxx{foo bar}
EOI
: members
:
: Test building individual libuX{} members.
:
ln -s ../foo.hxx ../foo.cxx ../bar.cxx ../driver.cxx ./;
$* test clean <<EOI
cc.poptions += "-I$src_base"
./: exe{foo}: cxx{driver} libue{foo}
./: liba{foo}: libua{foo}
./: libs{foo}: libus{foo}
libue{foo} libul{foo}: cxx{foo bar}
EOI
|