Skip to content

Commit

Permalink
Removes phasar-cli from vara install check.
Browse files Browse the repository at this point in the history
  • Loading branch information
boehmseb committed Jun 5, 2024
1 parent 2d62577 commit a551f5c
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions varats/varats/tools/research_tools/vara.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ def build(
)

def get_install_binaries(self) -> tp.List[str]:
return ["bin/clang++", "bin/opt", "bin/phasar-cli"]
return ["bin/clang++", "bin/opt"]

def verify_install(self, install_location: Path) -> bool:
"""
Expand All @@ -386,14 +386,6 @@ def verify_install(self, install_location: Path) -> bool:
status_ok &= ret == 0
status_ok &= vara_name in stdout

# Check that phasar-cli can display its version
phasar_cli = local[str(install_location / "bin/phasar-cli")]
ret, stdout, _ = phasar_cli.run("--version")
status_ok &= ret == 0

phasar_name = self.code_base.get_sub_project("phasar").name.lower()
status_ok &= phasar_name in stdout.lower()

return status_ok

def verify_build(
Expand Down

0 comments on commit a551f5c

Please sign in to comment.