Added the ability to specify a regex filter for the part-name on the synthesis tests. Implemented as --synth-part. Closes #179 (#180)
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
import os
|
||||
import subprocess
|
||||
import shutil
|
||||
import subprocess
|
||||
|
||||
from .base import Synthesizer
|
||||
|
||||
|
||||
class Vivado(Synthesizer):
|
||||
name = "vivado"
|
||||
|
||||
@@ -22,7 +23,7 @@ class Vivado(Synthesizer):
|
||||
"-mode", "batch",
|
||||
"-log", "out.log",
|
||||
"-source", script,
|
||||
"-tclargs"
|
||||
"-tclargs", self.request.config.getoption("--synth-part")
|
||||
]
|
||||
cmd.extend(self.testcase._get_synth_files())
|
||||
|
||||
|
||||
Reference in New Issue
Block a user