Skip to content

Commit

Permalink
keep the size of Boards0.json reduced
Browse files Browse the repository at this point in the history
  • Loading branch information
eine committed Jan 13, 2020
1 parent 08a118d commit ea1e648
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion data/Boards0.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
["test",[true,false,18,null,"hello"],[9,8],3324.34,832432,[2.5, 3.33, 5.25],"world"]
["test",[true,false,18,null,"hello"],[9,8],3324.34,832432,"world"]
1 change: 1 addition & 0 deletions data/Boards0b.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
["test",[true,false,18,null,"hello"],[9,8],3324.34,832432,[2.5, 3.33, 5.25],"world"]
4 changes: 2 additions & 2 deletions tests/VUnit/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def b16enc(s):

tb.get_tests("stringified*")[0].set_generic("tb_cfg", gen_str)
tb.get_tests("b16encoded stringified*")[0].set_generic("tb_cfg", b16enc(gen_str))
tb.get_tests("JSON file*")[0].set_generic("tb_cfg", join(root, 'data', 'Boards0.json'))
tb.get_tests("b16encoded JSON file*")[0].set_generic("tb_cfg", b16enc(join(root, 'data', 'Boards0.json')))
tb.get_tests("JSON file*")[0].set_generic("tb_cfg", join(root, 'data', 'Boards0b.json'))
tb.get_tests("b16encoded JSON file*")[0].set_generic("tb_cfg", b16enc(join(root, 'data', 'Boards0b.json')))

vu.main()

0 comments on commit ea1e648

Please sign in to comment.