blob: bbac1a4b72aedf60e7e60c4515139c399b214a39 (
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
|
spawn stap args.stp
expect {
-timeout 240
"READY" {
exec echo 1 > /proc/stap_test_cmd
expect {
-timeout 5
"yyy_int -1 200 300\r\nyyy_int returns 499\r\n" {
pass "integer function arguments"
}
}
exec echo 2 > /proc/stap_test_cmd
expect {
-timeout 5
"yyy_uint 4294967295 200 300\r\nyyy_uint returns 499\r\n" {
pass "unsigned function arguments"
}
}
exec echo 3 > /proc/stap_test_cmd
expect {
-timeout 5
"yyy_long -1 200 300\r\nyyy_long returns 499\r\n" {
pass "long function arguments"
}
}
exec echo 4 > /proc/stap_test_cmd
expect {
-timeout 5
"yyy_int64 -1 200 300\r\nyyy_int64 returns 499\r\n" {
pass "int64 function arguments"
}
}
exec echo 5 > /proc/stap_test_cmd
expect {
-timeout 5
"yyy_char 97 98 99\r\nyyy_char returns 81\r\n" {
pass "char function arguments"
}
}
exec echo 6 > /proc/stap_test_cmd
expect {
-timeout 5
"yyy_str Hello-System-Tap\r\nyyy_str returns XYZZY\r\n" {
pass "string function arguments"
}
}
}
eof {}
}
send "\003"
close
wait
|