Commit a952290f authored by Matthieu Cattin's avatar Matthieu Cattin

test00: remove call to get_bitstream_type that doesn't exist anymore.

All bitstream related information is now in sdb.
parent ac79742f
......@@ -65,9 +65,10 @@ def main (default_directory='.'):
raise PtsCritical("Carrier init failed, test stopped: %s" % e)
# Print bitsteam type
bitstream_type = carrier.get_bitstream_type()
print('Bitstream type:0x%.8X') % bitstream_type
print "Bitstream type OK.\n"
carrier_type = carrier.get_carrier_type()
print('Carrier type:0x%.8X') % carrier_type
if carrier_type == 1:
print "Carrier type OK.\n"
# Print carrier CSR registers
carrier.print_csr()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment