Skip to content

Commit

Permalink
Added osvvm_integration to acceptance tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kraigher committed May 22, 2015
1 parent 87e6bcc commit f30015b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions vunit/test/acceptance/test_external_run_scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,18 @@ def test_user_guide_example_project(self):
("passed", "lib.tb_example_many.test_pass"),
("failed", "lib.tb_example_many.test_fail")])

def test_osvvm_integration_example_project(self):
self.check(join(ROOT, "examples", "osvvm_integration", "run.py"), exit_code=1)
check_report(self.report_file,
[("passed", "lib.tb_alertlog_demo_global_with_comments.Test passing alerts"),
("passed", "lib.tb_alertlog_demo_hierarchy_with_comments.Test passing alerts"),
("passed", "lib.tb_alertlog_demo_global.Test passing alerts"),
("passed", "lib.tb_alertlog_demo_hierarchy.Test passing alerts"),
("failed", "lib.tb_alertlog_demo_global_with_comments.Test failing alerts"),
("failed", "lib.tb_alertlog_demo_hierarchy_with_comments.Test failing alerts"),
("failed", "lib.tb_alertlog_demo_global.Test failing alerts"),
("failed", "lib.tb_alertlog_demo_hierarchy.Test failing alerts")])

def test_com_example_project(self):
self.check(join(ROOT, "examples", "com", "run.py"))

Expand Down

0 comments on commit f30015b

Please sign in to comment.