Skip to content

Commit 7323c5b

Browse files
committed
Fixed an issue with the shared command-line arguments of Incisive and Xcelium
1 parent 347d17b commit 7323c5b

File tree

2 files changed

+2
-19
lines changed

2 files changed

+2
-19
lines changed

vunit/sim_if/incisive.py

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -40,24 +40,7 @@ class IncisiveInterface( # pylint: disable=too-many-instance-attributes
4040

4141
sim_options = [ListOfStringOption("incisive.irun_sim_flags")]
4242

43-
@staticmethod
44-
def add_arguments(parser):
45-
"""
46-
Add command line arguments
47-
"""
48-
group = parser.add_argument_group(
49-
"Incisive irun", description="Incisive irun-specific flags"
50-
)
51-
group.add_argument(
52-
"--cdslib",
53-
default=None,
54-
help="The cds.lib file to use. If not given, VUnit maintains its own cds.lib file.",
55-
)
56-
group.add_argument(
57-
"--hdlvar",
58-
default=None,
59-
help="The hdl.var file to use. If not given, VUnit does not use a hdl.var file.",
60-
)
43+
# NOTE: Incisive shares the command-line arguments with Xcelium
6144

6245
@classmethod
6346
def from_args(cls, args, output_path, **kwargs):

vunit/sim_if/xcelium.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def add_arguments(parser):
4646
Add command line arguments
4747
"""
4848
group = parser.add_argument_group(
49-
"Xcelium xrun", description="Xcelium xrun-specific flags"
49+
"Xcelium/Incisive", description="Xcelium/Incisive specific flags"
5050
)
5151
group.add_argument(
5252
"--cdslib",

0 commit comments

Comments
 (0)