mirror of
https://github.com/vlang/v.git
synced 2025-09-08 06:41:58 -04:00
8 lines
404 B
Awk
8 lines
404 B
Awk
/\[/ { print ("const vectors = [") }
|
|
/]/ { print ("]") }
|
|
/"hash": "blake2s"/ { print ("\tTestVector{") }
|
|
/"in":/ { gsub(/"|,/, "", $2); print ("\t\tinput: '" $2 "',") }
|
|
/"key":/ { gsub(/"|,/, "", $2); print ("\t\tkey: '" $2 "',") }
|
|
/"out":/ { gsub(/"|,/, "", $2); print ("\t\toutput: '" $2 "',") }
|
|
/}/ { print (" },") }
|