-
Notifications
You must be signed in to change notification settings - Fork 975
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2417 from crytic/invalid-compilations-errors
Reduce verbosity for InvalidCompilation errors
- Loading branch information
Showing
2 changed files
with
28 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import sys | ||
import tempfile | ||
import pytest | ||
|
||
from slither.__main__ import main_impl | ||
|
||
|
||
def test_cli_exit_on_invalid_compilation_file(caplog): | ||
|
||
with tempfile.NamedTemporaryFile("w") as f: | ||
f.write("pragma solidity ^0.10000.0;") | ||
|
||
sys.argv = ["slither", f.name] | ||
with pytest.raises(SystemExit) as pytest_wrapped_e: | ||
main_impl([], []) | ||
|
||
assert pytest_wrapped_e.type == SystemExit | ||
assert pytest_wrapped_e.value.code == 2 | ||
|
||
assert caplog.record_tuples[0] == ("Slither", 40, "Unable to compile all targets.") |