Skip to content

Commit

Permalink
test: Update integrity tests reference documents
Browse files Browse the repository at this point in the history
  • Loading branch information
noseglasses committed Dec 10, 2021
1 parent 173a45e commit 8b0b723
Show file tree
Hide file tree
Showing 26 changed files with 460 additions and 380 deletions.
3 changes: 3 additions & 0 deletions tests/test_cases/test_command_line_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,9 @@ def test_size_command(self):
def test_skip_details(self):
self.runSimpleTest([("skip_details", None)])

def test_skip_persisting_same_size(self):
self.runSimpleTest([("skip_persisting_same_size", None)])

def test_skip_symbol_similarities(self):
self.runSimpleTest([("skip_symbol_similarities", None)])

Expand Down
10 changes: 7 additions & 3 deletions tests/test_cases/test_symbol_migration.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,16 @@ def test_symbol_migration(self):
html_dir = "migration_test_multi_page_pair_report"
output_file = os.path.join(html_dir, "index.html")
self.runSimpleTestBase(
args=[("html_dir", html_dir)],
args=[
("html_dir", html_dir),
("old_source_prefix", "/home/flo/Documents/elf_diff/tests/src/old/"),
("new_source_prefix", "/home/flo/Documents/elf_diff/tests/src/new/"),
],
old_binary_filename=getTestBinary(
"x86_64", "migration_test", "release", "new"
"x86_64", "migration_test", "debug", "old"
),
new_binary_filename=getTestBinary(
"x86_64", "migration_test", "release", "new"
"x86_64", "migration_test", "debug", "new"
),
output_file=output_file,
)
Loading

0 comments on commit 8b0b723

Please sign in to comment.