move test

This commit is contained in:
Florent Kermarrec 2014-12-05 17:48:01 +01:00
parent 6f96338962
commit e900b9031c
8 changed files with 9 additions and 6 deletions

View File

@ -1,4 +1,4 @@
MSCDIR = ../../../../ MSCDIR = ../../../
PYTHON = python3 PYTHON = python3
CMD = PYTHONPATH=$(MSCDIR) $(PYTHON) CMD = PYTHONPATH=$(MSCDIR) $(PYTHON)

View File

@ -3,9 +3,10 @@ import subprocess
from migen.fhdl.std import * from migen.fhdl.std import *
from lib.sata.std import * from lib.sata.std import *
from lib.sata.link.test.common import *
from lib.sata.transport.std import * from lib.sata.transport.std import *
from lib.sata.test.common import *
class PHYDword: class PHYDword:
def __init__(self, dat=0): def __init__(self, dat=0):
self.dat = dat self.dat = dat

View File

@ -4,7 +4,8 @@ from migen.fhdl.std import *
from lib.sata.std import * from lib.sata.std import *
from lib.sata.link.crc import * from lib.sata.link.crc import *
from lib.sata.link.test.common import *
from lib.sata.test.common import *
class TB(Module): class TB(Module):
def __init__(self, length, random): def __init__(self, length, random):

View File

@ -7,8 +7,8 @@ from migen.sim.generic import run_simulation
from lib.sata.std import * from lib.sata.std import *
from lib.sata.link import SATALinkLayer from lib.sata.link import SATALinkLayer
from lib.sata.link.test.bfm import * from lib.sata.test.bfm import *
from lib.sata.link.test.common import * from lib.sata.test.common import *
class LinkPacket(): class LinkPacket():
def __init__(self, d=[]): def __init__(self, d=[]):

View File

@ -4,7 +4,8 @@ from migen.fhdl.std import *
from lib.sata.std import * from lib.sata.std import *
from lib.sata.link.scrambler import * from lib.sata.link.scrambler import *
from lib.sata.link.test.common import *
from lib.sata.test.common import *
class TB(Module): class TB(Module):
def __init__(self, length): def __init__(self, length):