first commit
This commit is contained in:
commit
cd1e91bb99
287 changed files with 86425 additions and 0 deletions
31
rasta_exp/tester/iccta_tester.py
Normal file
31
rasta_exp/tester/iccta_tester.py
Normal file
|
@ -0,0 +1,31 @@
|
|||
from .abstract_tester import abstract_tester
|
||||
import utils
|
||||
import error_collector as errors
|
||||
import datetime
|
||||
import re
|
||||
from typing import Type
|
||||
from pathlib import Path
|
||||
|
||||
|
||||
class iccta_tester(abstract_tester):
|
||||
EXPECTED_ERROR_TYPES: list = [
|
||||
errors.JavaError,
|
||||
errors.NoPrefixJavaError,
|
||||
errors.FlowdroidLog4jError,
|
||||
]
|
||||
TOOL_NAME = "iccta"
|
||||
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
|
||||
@classmethod
|
||||
def check_success(cls, path: Path, apk_filename: str):
|
||||
l1 = False
|
||||
with (path / "stdout").open(errors="replace") as file:
|
||||
for line in file:
|
||||
if l1 and "Analysis has run for" in line:
|
||||
return True
|
||||
l1 = False
|
||||
if "Maximum memory consumption:" in line:
|
||||
l1 = True
|
||||
return False
|
Loading…
Add table
Add a link
Reference in a new issue