mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 16:29:40 +00:00
Added find_modular_asserts.sh
This commit is contained in:
parent
b4872e2820
commit
ec2827eb83
1 changed files with 29 additions and 0 deletions
29
scripts/find_modular_asserts.sh
Executable file
29
scripts/find_modular_asserts.sh
Executable file
|
@ -0,0 +1,29 @@
|
|||
#!/bin/sh
|
||||
|
||||
awk '
|
||||
/^module/{
|
||||
m=1
|
||||
split($2,narr,"(")
|
||||
module=narr[1]"()"
|
||||
}
|
||||
/^function/{
|
||||
m=0
|
||||
module=""
|
||||
}
|
||||
/[^=] *assert\(/{
|
||||
if(m) {
|
||||
if(fname!=FILENAME) {
|
||||
fname=FILENAME
|
||||
print "File",fname
|
||||
}
|
||||
if(prevmodule!=module) {
|
||||
prevmodule=module
|
||||
print " Module",module
|
||||
}
|
||||
assertline=$0
|
||||
sub(/^ */, "", assertline)
|
||||
print " ",FNR,":",assertline
|
||||
}
|
||||
}
|
||||
' *.scad
|
||||
|
Loading…
Reference in a new issue