]>
Commit | Line | Data |
---|---|---|
908eaf68 | 1 | #!/bin/bash |
6bf19c94 CH |
2 | # |
3 | # Copyright (C) 2009 Red Hat, Inc. | |
4 | # Copyright (c) 2000-2001 Silicon Graphics, Inc. All Rights Reserved. | |
5 | # | |
6 | # This program is free software; you can redistribute it and/or | |
7 | # modify it under the terms of the GNU General Public License as | |
8 | # published by the Free Software Foundation. | |
9 | # | |
10 | # This program is distributed in the hope that it would be useful, | |
11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | # GNU General Public License for more details. | |
14 | # | |
15 | # You should have received a copy of the GNU General Public License | |
e8c212d6 | 16 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
6bf19c94 CH |
17 | # |
18 | # | |
19 | # standard filters | |
20 | # | |
21 | ||
6bf19c94 CH |
22 | # ctime(3) dates |
23 | # | |
24 | _filter_date() | |
25 | { | |
26 | sed \ | |
79e40ab1 | 27 | -e 's/[A-Z][a-z][a-z] [A-z][a-z][a-z] *[0-9][0-9]* [0-9][0-9]:[0-9][0-9]:[0-9][0-9] [0-9][0-9][0-9][0-9]$/DATE/' |
6bf19c94 CH |
28 | } |
29 | ||
15489c76 JC |
30 | _filter_generated_node_ids() |
31 | { | |
32 | sed -re 's/\#block[0-9]{3,}/NODE_NAME/' | |
33 | } | |
34 | ||
62284d17 | 35 | # replace occurrences of the actual TEST_DIR value with TEST_DIR |
6bf19c94 CH |
36 | _filter_testdir() |
37 | { | |
38 | sed -e "s#$TEST_DIR#TEST_DIR#g" | |
39 | } | |
40 | ||
62284d17 SH |
41 | # replace occurrences of the actual IMGFMT value with IMGFMT |
42 | _filter_imgfmt() | |
43 | { | |
44 | sed -e "s#$IMGFMT#IMGFMT#g" | |
45 | } | |
46 | ||
a06d5cc2 KW |
47 | # Removes \r from messages |
48 | _filter_win32() | |
49 | { | |
50 | sed -e 's/\r//g' | |
51 | } | |
52 | ||
6bf19c94 CH |
53 | # sanitize qemu-io output |
54 | _filter_qemu_io() | |
55 | { | |
c34b8012 | 56 | _filter_win32 | sed -e "s/[0-9]* ops\; [0-9/:. sec]* ([0-9/.inf]* [EPTGMKiBbytes]*\/sec and [0-9/.inf]* ops\/sec)/X ops\; XX:XX:XX.X (XXX YYY\/sec and XXX ops\/sec)/" \ |
9e0c3e8d | 57 | -e "s/: line [0-9][0-9]*: *[0-9][0-9]*\( Aborted\| Killed\)/:\1/" \ |
c34b8012 | 58 | -e "s/qemu-io> //g" |
6bf19c94 CH |
59 | } |
60 | ||
c09b437b SH |
61 | # replace occurrences of QEMU_PROG with "qemu" |
62 | _filter_qemu() | |
63 | { | |
9580498b | 64 | sed -e "s#\\(^\\|(qemu) \\)$(basename $QEMU_PROG):#\1QEMU_PROG:#" \ |
ac9524dc | 65 | -e 's#^QEMU [0-9]\+\.[0-9]\+\.[0-9]\+ monitor#QEMU X.Y.Z monitor#' \ |
4dd7b8d3 | 66 | -e '/main-loop: WARNING: I\/O thread spun for [0-9]\+ iterations/d' \ |
ac9524dc | 67 | -e $'s#\r##' # QEMU monitor uses \r\n line endings |
c09b437b SH |
68 | } |
69 | ||
a9b43397 KW |
70 | # replace problematic QMP output like timestamps |
71 | _filter_qmp() | |
72 | { | |
73 | _filter_win32 | \ | |
74 | sed -e 's#\("\(micro\)\?seconds": \)[0-9]\+#\1 TIMESTAMP#g' \ | |
cc20b07a HR |
75 | -e 's#^{"QMP":.*}$#QMP_VERSION#' \ |
76 | -e '/^ "QMP": {\s*$/, /^ }\s*$/ c\' \ | |
77 | -e ' QMP_VERSION' | |
a9b43397 KW |
78 | } |
79 | ||
a752e478 VSO |
80 | # replace block job offset |
81 | _filter_block_job_offset() | |
82 | { | |
83 | sed -e 's/, "offset": [0-9]\+,/, "offset": OFFSET,/' | |
84 | } | |
85 | ||
6ffb4cb6 KW |
86 | # replace driver-specific options in the "Formatting..." line |
87 | _filter_img_create() | |
88 | { | |
89 | sed -e "s#$IMGPROTO:$TEST_DIR#TEST_DIR#g" \ | |
90 | -e "s#$TEST_DIR#TEST_DIR#g" \ | |
91 | -e "s#$IMGFMT#IMGFMT#g" \ | |
92 | -e "s# encryption=off##g" \ | |
93 | -e "s# cluster_size=[0-9]\\+##g" \ | |
94 | -e "s# table_size=[0-9]\\+##g" \ | |
fe646693 | 95 | -e "s# compat=[^ ]*##g" \ |
6ffb4cb6 KW |
96 | -e "s# compat6=\\(on\\|off\\)##g" \ |
97 | -e "s# static=\\(on\\|off\\)##g" \ | |
98 | -e "s# zeroed_grain=\\(on\\|off\\)##g" \ | |
99 | -e "s# subformat='[^']*'##g" \ | |
100 | -e "s# adapter_type='[^']*'##g" \ | |
f249924e | 101 | -e "s# hwversion=[^ ]*##g" \ |
6ffb4cb6 KW |
102 | -e "s# lazy_refcounts=\\(on\\|off\\)##g" \ |
103 | -e "s# block_size=[0-9]\\+##g" \ | |
104 | -e "s# block_state_zero=\\(on\\|off\\)##g" \ | |
105 | -e "s# log_size=[0-9]\\+##g" \ | |
5262caa7 | 106 | -e "s/archipelago:a/TEST_DIR\//g" \ |
b7e875b2 DB |
107 | -e "s# refcount_bits=[0-9]\\+##g" \ |
108 | -e "s# key-secret=[a-zA-Z0-9]\\+##g" | |
6ffb4cb6 KW |
109 | } |
110 | ||
c2eb918e HT |
111 | _filter_img_info() |
112 | { | |
113 | sed -e "s#$IMGPROTO:$TEST_DIR#TEST_DIR#g" \ | |
114 | -e "s#$TEST_DIR#TEST_DIR#g" \ | |
115 | -e "s#$IMGFMT#IMGFMT#g" \ | |
a231cb27 | 116 | -e 's#nbd://127.0.0.1:10810$#TEST_DIR/t.IMGFMT#g' \ |
c2eb918e HT |
117 | -e "/encrypted: yes/d" \ |
118 | -e "/cluster_size: [0-9]\\+/d" \ | |
119 | -e "/table_size: [0-9]\\+/d" \ | |
120 | -e "/compat: '[^']*'/d" \ | |
121 | -e "/compat6: \\(on\\|off\\)/d" \ | |
122 | -e "/static: \\(on\\|off\\)/d" \ | |
123 | -e "/zeroed_grain: \\(on\\|off\\)/d" \ | |
124 | -e "/subformat: '[^']*'/d" \ | |
125 | -e "/adapter_type: '[^']*'/d" \ | |
f249924e | 126 | -e "/hwversion: '[^']*'/d" \ |
c2eb918e HT |
127 | -e "/lazy_refcounts: \\(on\\|off\\)/d" \ |
128 | -e "/block_size: [0-9]\\+/d" \ | |
129 | -e "/block_state_zero: \\(on\\|off\\)/d" \ | |
130 | -e "/log_size: [0-9]\\+/d" \ | |
131 | -e "s/archipelago:a/TEST_DIR\//g" | |
132 | } | |
133 | ||
f67ac71e HR |
134 | # filter out offsets and file names from qemu-img map |
135 | _filter_qemu_img_map() | |
136 | { | |
137 | sed -e 's/\([0-9a-fx]* *[0-9a-fx]* *\)[0-9a-fx]* */\1/g' \ | |
138 | -e 's/Mapped to *//' | _filter_testdir | _filter_imgfmt | |
139 | } | |
140 | ||
60d44688 HR |
141 | _filter_nbd() |
142 | { | |
143 | # nbd.c error messages contain function names and line numbers that are | |
144 | # prone to change. Message ordering depends on timing between send and | |
145 | # receive callbacks sometimes, making them unreliable. | |
146 | # | |
147 | # Filter out the TCP port number since this changes between runs. | |
dd170c06 | 148 | sed -e '/nbd\/.*\.c:/d' \ |
4a940d14 HR |
149 | -e 's#nbd:\(//\)\?127\.0\.0\.1:[0-9]*#nbd:\1127.0.0.1:PORT#g' \ |
150 | -e "s#?socket=$TEST_DIR#?socket=TEST_DIR#g" \ | |
60d44688 HR |
151 | -e 's#\(exportname=foo\|PORT\): Failed to .*$#\1#' |
152 | } | |
153 | ||
6bf19c94 | 154 | # make sure this script returns success |
a2d9c0c4 | 155 | true |