Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removes phasar-cli from vara install check. #888

Merged
merged 1 commit into from
Jun 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading