blob: d3650f3472ccf787f99751b52908f5a457b0463d (
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
bad_interp_len_head()
{
atf_set "descr" "Bad interpreter length"
}
bad_interp_len_body()
{
atf_check -s exit:1 -e 'match:No such file or directory' -o empty \
-x "cd $(atf_get_srcdir) && ./execve_helper bad_interp_len"
}
empty_head()
{
atf_set "descr" "Empty file"
}
empty_body()
{
atf_check -s exit:1 -e 'match:Exec format error' -o empty \
-x "cd $(atf_get_srcdir) && ./execve_helper empty"
}
good_aout_head()
{
atf_set "descr" "Good a.out"
}
good_aout_body()
{
atf_check -s exit:0 -e empty -o 'match:succeeded' \
-x "cd $(atf_get_srcdir) && ./execve_helper ./good_aout"
}
good_script_head()
{
atf_set "descr" "Good script"
}
good_script_body()
{
atf_check -s exit:0 -e empty -o 'match:succeeded' \
-x "cd $(atf_get_srcdir) && ./execve_helper good_script"
}
non_exist_head()
{
atf_set "descr" "Non-existent file"
}
non_exist_body()
{
atf_check -s exit:1 -e 'match:No such file or directory' -o empty \
-x "cd $(atf_get_srcdir) && ./execve_helper non_exist"
}
non_exist_shell_head()
{
atf_set "descr" "Non-existent shell"
}
non_exist_shell_body()
{
atf_check -s exit:1 -e 'match:No such file or directory' -o empty \
-x "cd $(atf_get_srcdir) && ./execve_helper non_exist_shell"
}
script_arg_head()
{
atf_set "descr" "-x in the shebang"
}
script_arg_body()
{
atf_check -s exit:0 -e 'match:\+ echo succeeded' -o 'match:succeeded' \
-x "cd $(atf_get_srcdir) && ./execve_helper script_arg"
}
script_arg_nospace_head()
{
atf_set "descr" '-x in the shebang; no space between #! and /bin/sh'
}
script_arg_nospace_body()
{
atf_check -s exit:0 -e 'match:\+ echo succeeded' -o 'match:succeeded' \
-x "cd $(atf_get_srcdir) && ./execve_helper script_arg_nospace"
}
sparse_aout_head()
{
atf_set "descr" 'Sparse file'
}
sparse_aout_body()
{
atf_check -s exit:1 -e 'match:Exec format error' -o empty \
-x "cd $(atf_get_srcdir) && ./execve_helper sparse_aout"
}
trunc_aout_head()
{
atf_set "descr" 'Truncated file'
}
trunc_aout_body()
{
atf_check -s exit:1 -e 'match:Exec format error' -o empty \
-x "cd $(atf_get_srcdir) && ./execve_helper trunc_aout"
}
empty_args_head()
{
atf_set "descr" "Empty argv behavior"
}
empty_args_body()
{
atf_check -o inline:"1\n" \
-x "cd $(atf_get_srcdir) && ./execve_helper execve_argc_helper"
# Historically we allowed argc == 0, while execve(2) claimed we didn't.
# execve() should kick back an EINVAL now. We verified the helper was
# there/working in the check just above.
atf_check -s exit:1 \
-e match:".+Invalid argument$" \
-x "cd $(atf_get_srcdir) && ./execve_helper -n execve_argc_helper"
}
atf_init_test_cases()
{
atf_add_test_case bad_interp_len
atf_add_test_case empty
atf_add_test_case good_aout
atf_add_test_case good_script
atf_add_test_case non_exist
atf_add_test_case non_exist_shell
atf_add_test_case script_arg
atf_add_test_case script_arg_nospace
atf_add_test_case sparse_aout
atf_add_test_case trunc_aout
atf_add_test_case empty_args
}
|