blob: 8b8de7322bbee54400d4a0cf805a0564ce72ce97 (
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
// file : libbuild2/test/script/builtin.cli
// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
include <libbuild2/types.hxx>;
// Note that options in this file are undocumented because we generate neither
// the usage printing code nor man pages. Instead, they are documented in the
// Testscript Language Manual's builtin descriptions.
//
// Also note that the string type is used for the path options because their
// parsing depends on the testscript scope working directory (see parse_path()
// for details) and passing this information to the CLI custom parser would
// not be easy.
//
namespace build2
{
namespace test
{
namespace script
{
// Common option base classes.
//
class cleanup_options = 0
{
bool --no-cleanup;
};
// Builtin options.
//
class cat_options
{
// No options so far.
//
};
class cp_options: cleanup_options
{
bool --recursive|-R|-r;
bool --preserve|-p;
};
class ln_options: cleanup_options
{
bool --symbolic|-s;
};
class mkdir_options: cleanup_options
{
bool --parents|-p;
};
class mv_options: cleanup_options
{
bool --force|-f;
};
class rm_options
{
bool --recursive|-r;
bool --force|-f;
};
class rmdir_options
{
bool --force|-f;
};
class sed_options
{
bool --quiet|-n;
bool --in-place|-i;
strings --expression|-e;
};
class set_options
{
bool --exact|-e;
bool --newline|-n;
bool --whitespace|-w;
};
class sleep_options
{
// No options so far.
//
};
class test_options
{
bool --file|-f;
bool --directory|-d;
};
class touch_options: cleanup_options
{
string --after; // Path (see above).
};
}
}
}
|