Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sv2v
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
sv2v
Commits
dce92405
Commit
dce92405
authored
Apr 23, 2019
by
Zachary Snow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added $bits and stability checks to test runner
parent
d36ae19e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
+12
-3
test/lib/runner.sh
+12
-3
No files found.
test/lib/runner.sh
View file @
dce92405
...
...
@@ -36,11 +36,20 @@ simulate() {
assertConverts
()
{
ac_file
=
"
$1
"
ac_temp
=
"
$SHUNIT_TMPDIR
/ac-conv-temp.v"
$SV2V
"
$ac_file
"
2> /dev/null
>
"
$ac_temp
"
ac_tmpa
=
"
$SHUNIT_TMPDIR
/ac-conv-tmpa.v"
ac_tmpb
=
"
$SHUNIT_TMPDIR
/ac-conv-tmpb.v"
ac_tmpc
=
"
$SHUNIT_TMPDIR
/ac-conv-tmpc.v"
$SV2V
"
$ac_file
"
2> /dev/null
>
"
$ac_tmpa
"
assertTrue
"1st conversion of
$ac_file
failed"
$?
$SV2V
"
$ac_t
emp
"
2> /dev/null
>
/dev/null
$SV2V
"
$ac_t
mpa
"
2> /dev/null
>
"
$ac_tmpb
"
assertTrue
"2nd conversion of
$ac_file
failed"
$?
$SV2V
"
$ac_tmpb
"
2> /dev/null
>
"
$ac_tmpc
"
assertTrue
"3rd conversion of
$ac_file
failed"
$?
diff
"
$ac_tmpb
"
"
$ac_tmpc
"
>
/dev/null
assertTrue
"conversion of
$ac_file
not stable after the second iteration"
$?
# using sed to remove quoted strings because "$bits" may be printed
sed
-E
's/"([^"]|\")+"//g'
"
$ac_tmpa
"
|
grep
"
\$
bits"
>
/dev/null
assertFalse
"conversion of
$ac_file
still contains
\$
bits"
$?
}
simpleTest
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment