-
Notifications
You must be signed in to change notification settings - Fork 1
/
blizzard_manifest.py
61 lines (59 loc) · 1.89 KB
/
blizzard_manifest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import os
from manifest import (
TestDict,
device1_sn,
device2_sn,
device3_sn,
l_voltage,
h_voltage,
analog,
)
blizzard_test_dict = [
{
"test_name": "chain_check",
"chain": True,
"hex_file_path": f"{os.path.dirname(os.path.realpath(__file__))}/silicon_tests/clear/chain_check/chain_check.hex",
},
{
"test_name": "and_gate",
"and_flag": True,
"hex_file_path": f"{os.path.dirname(os.path.realpath(__file__))}/silicon_tests/clear/and_gate/and_gate.hex",
},
{
"test_name": "inv_1",
"fpga_io": True,
"hex_file_path": f"{os.path.dirname(os.path.realpath(__file__))}/silicon_tests/clear/inv_1/inv_1.hex",
},
{
"test_name": "inv_2",
"fpga_io": True,
"hex_file_path": f"{os.path.dirname(os.path.realpath(__file__))}/silicon_tests/clear/inv_2/inv_2.hex",
},
{
"test_name": "ALU_4bits",
"alu": True,
"hex_file_path": f"{os.path.dirname(os.path.realpath(__file__))}/silicon_tests/clear/ALU_4bits/ALU_4bits.hex",
},
{
"test_name": "seconds_decoder",
"sec_count": True,
"hex_file_path": f"{os.path.dirname(os.path.realpath(__file__))}/silicon_tests/clear/seconds_decoder/seconds_decoder.hex",
},
{
"test_name": "fpga_ram8x20",
"fpga_ram": True,
"hex_file_path": f"{os.path.dirname(os.path.realpath(__file__))}/silicon_tests/clear/fpga_ram8x20/fpga_ram8x20.hex",
},
{
"test_name": "adc_test",
"ana": True,
"hex_file_path": f"{os.path.dirname(os.path.realpath(__file__))}/silicon_tests/blizzard/adc_test/adc_test.hex",
},
{
"test_name": "dac_test",
"ana": True,
"hex_file_path": f"{os.path.dirname(os.path.realpath(__file__))}/silicon_tests/blizzard/dac_test/dac_test.hex",
},
]
for test in blizzard_test_dict:
TestDict.append(test)