forked from chipsalliance/verible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
verilog_preprocessor_test.sh
executable file
·183 lines (137 loc) · 4.3 KB
/
verilog_preprocessor_test.sh
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
#!/bin/bash
# Copyright 2017-2020 The Verible Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Find input files
MY_INPUT_FILE="${TEST_TMPDIR}/myinput.txt"
readonly MY_INPUT_FILE
MY_OUTPUT_FILE="${TEST_TMPDIR}/myoutput.txt"
readonly MY_OUTPUT_FILE
MY_EXPECT_FILE="${TEST_TMPDIR}/myexpect.txt"
readonly MY_EXPECT_FILE
# Process script flags and arguments.
[[ "$#" == 1 ]] || {
echo "Expecting 1 positional argument, verible-verilog-preprocessor path."
exit 1
}
preprocessor="$(rlocation ${TEST_WORKSPACE}/$1)"
################################################################################
echo "=== Test no command."
"$preprocessor" > "$MY_OUTPUT_FILE" 2>&1
status="$?"
[[ $status == 1 ]] || {
"Expected exit code 1, but got $status"
exit 1
}
################################################################################
echo "=== Test invalid command."
"$preprocessor" bad-subcommand > "$MY_OUTPUT_FILE" 2>&1
status="$?"
[[ $status == 1 ]] || {
"Expected exit code 1, but got $status"
exit 1
}
################################################################################
echo "=== Test the 'help' command."
"$preprocessor" help > "$MY_OUTPUT_FILE" 2>&1
status="$?"
[[ $status == 0 ]] || {
"Expected exit code 0, but got $status"
exit 1
}
grep -q "strip-comments" "$MY_OUTPUT_FILE" || {
echo "Expected \"strip-comments\" in $MY_OUTPUT_FILE but didn't find it. Got:"
cat "$MY_OUTPUT_FILE"
exit 1
}
################################################################################
echo "=== Test 'help' on a specific command."
"$preprocessor" help help > "$MY_OUTPUT_FILE" 2>&1
status="$?"
[[ $status == 0 ]] || {
"Expected exit code 0, but got $status"
exit 1
}
################################################################################
echo "=== Test strip-comments: missing file argument."
"$preprocessor" strip-comments > /dev/null
status="$?"
[[ $status == 1 ]] || {
"Expected exit code 1, but got $status"
exit 1
}
################################################################################
echo "=== Test strip-comments: white out comments"
cat > "$MY_INPUT_FILE" <<EOF
// fake Verilog file.
/*
file description
*/
module mmm;
logic l1; // l1 is for blah
/* l2 does this */
logic l2;
endmodule
EOF
cat > "$MY_EXPECT_FILE" <<EOF
module mmm;
logic l1;
logic l2;
endmodule
EOF
"$preprocessor" strip-comments "$MY_INPUT_FILE" > "$MY_OUTPUT_FILE"
status="$?"
[[ $status == 0 ]] || {
"Expected exit code 0, but got $status"
exit 1
}
diff --strip-trailing-cr -u "$MY_EXPECT_FILE" "$MY_OUTPUT_FILE" || {
exit 1
}
# Same but piped into stdin.
"$preprocessor" strip-comments - < "$MY_INPUT_FILE" > "$MY_OUTPUT_FILE"
status="$?"
[[ $status == 0 ]] || {
"Expected exit code 0, but got $status"
exit 1
}
diff --strip-trailing-cr -u "$MY_EXPECT_FILE" "$MY_OUTPUT_FILE" || {
exit 1
}
################################################################################
echo "=== Test strip-comments: on a lexically invalid source file"
cat > "$MY_INPUT_FILE" <<EOF
module 1m; /* comment */ endmodule
EOF
cat > "$MY_EXPECT_FILE" <<EOF
module 1m; endmodule
EOF
"$preprocessor" strip-comments "$MY_INPUT_FILE" > "$MY_OUTPUT_FILE"
status="$?"
[[ $status == 0 ]] || {
"Expected exit code 1, but got $status"
exit 0
}
diff --strip-trailing-cr -u "$MY_EXPECT_FILE" "$MY_OUTPUT_FILE" || {
exit 1
}
################################################################################
# Test strip-comments: reading a nonexistent source file.
"$preprocessor" strip-comments "$MY_INPUT_FILE.does.not.exist" > /dev/null
status="$?"
[[ $status == 1 ]] || {
"Expected exit code 1, but got $status"
exit 1
}
################################################################################
echo "PASS"