Skip to content

Commit

Permalink
Update results script
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardt committed Sep 25, 2019
1 parent 273f90c commit e1f90c3
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 18 deletions.
18 changes: 9 additions & 9 deletions scripts/collect_results.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#!/bin/bash


python tests/test_tff.py
python tests/test_counter.py
python tests/test_piso.py
python tests/test_detect.py
python tests/test_serializer.py
python tests/test_fifo.py
python tests/test_uart.py
python tests/test_lbmem.py
python tests/test_tap.py
python tests/test_tff.py by_path
python tests/test_counter.py by_path
python tests/test_piso.py by_path
python tests/test_detect.py by_path
python tests/test_serializer.py by_path
python tests/test_fifo.py by_path
python tests/test_uart.py by_path
python tests/test_lbmem.py by_path
python tests/test_tap.py by_path
3 changes: 2 additions & 1 deletion tests/test_counter.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,5 @@ def test_counter(strategy):


if __name__ == '__main__':
test_counter()
import sys
test_counter(sys.argv[1])
3 changes: 2 additions & 1 deletion tests/test_detect.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,5 @@ def test_detect111(strategy):


if __name__ == '__main__':
test_detect111()
import sys
test_detect111(sys.argv[1])
3 changes: 2 additions & 1 deletion tests/test_fifo.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,4 +172,5 @@ def test_fifo(strategy):


if __name__ == "__main__":
test_fifo()
import sys
test_fifo(sys.argv[1])
3 changes: 2 additions & 1 deletion tests/test_lbmem.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,8 @@ def test_lbmem(strategy):


if __name__ == "__main__":
test_lbmem()
import sys
test_lbmem(sys.argv[1])


"""
Expand Down
3 changes: 2 additions & 1 deletion tests/test_piso.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,5 @@ def mux2(y):


if __name__ == '__main__':
test_PISO()
import sys
test_PISO(sys.argv[1])
3 changes: 2 additions & 1 deletion tests/test_serializer.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,5 @@ def test_ser4(strategy):


if __name__ == '__main__':
test_ser4()
import sys
test_ser4(sys.argv[1])
3 changes: 2 additions & 1 deletion tests/test_tap.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,4 +226,5 @@ def test_tap(strategy):


if __name__ == '__main__':
test_tap()
import sys
test_tap(sys.argv[1])
3 changes: 2 additions & 1 deletion tests/test_tff.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,5 @@ def definition(io):
print("===== END : MANTLE RESULTS =====")

if __name__ == '__main__':
test_TFF()
import sys
test_TFF(sys.argv[1])
3 changes: 2 additions & 1 deletion tests/test_uart.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,4 +106,5 @@ def test_UART(strategy):


if __name__ == '__main__':
test_UART()
import sys
test_UART(sys.argv[1])

0 comments on commit e1f90c3

Please sign in to comment.