hc
2023-12-06 d38611ca164021d018c1b23eee65bbebc09c63e0
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
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
# description: event trigger - test synthetic_events syntax parser errors
# requires: synthetic_events error_log "char name[]' >> synthetic_events":README
 
check_error() { # command-with-error-pos-by-^
    ftrace_errlog_check 'synthetic_events' "$1" 'synthetic_events'
}
 
check_dyn_error() { # command-with-error-pos-by-^
    ftrace_errlog_check 'synthetic_events' "$1" 'dynamic_events'
}
 
check_error 'myevent ^chr arg'            # INVALID_TYPE
check_error 'myevent ^unsigned arg'        # INCOMPLETE_TYPE
 
check_error 'myevent char ^str]; int v'        # BAD_NAME
check_error '^mye-vent char str[]'        # BAD_NAME
check_error 'myevent char ^st-r[]'        # BAD_NAME
 
check_error 'myevent char str;^[]'        # INVALID_FIELD
check_error 'myevent char str; ^int'        # INVALID_FIELD
 
check_error 'myevent char ^str[; int v'        # INVALID_ARRAY_SPEC
check_error 'myevent char ^str[kdjdk]'        # INVALID_ARRAY_SPEC
check_error 'myevent char ^str[257]'        # INVALID_ARRAY_SPEC
 
check_error '^mye;vent char str[]'        # INVALID_CMD
check_error '^myevent ; char str[]'        # INVALID_CMD
check_error '^myevent; char str[]'        # INVALID_CMD
check_error '^myevent ;char str[]'        # INVALID_CMD
check_error '^; char str[]'            # INVALID_CMD
check_error '^;myevent char str[]'        # INVALID_CMD
check_error '^myevent'                # INVALID_CMD
 
check_dyn_error '^s:junk/myevent char str['    # INVALID_DYN_CMD
 
exit 0