mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
923fac07db
* gnu/packages/python-xyz.scm (python-angr): Update to 9.2.112. [propagated-inputs]: Remove python-progressbar2; add python-pyformlang, add python-rich, add python-unique-log-filter. * gnu/packages/patches/python-angr-addition-type-error.patch: Remove patch (merged upstream and included in new release). * gnu/packages/patches/python-angr-check-exec-deps.patch: Rebase for new release. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
88 lines
3.7 KiB
Diff
88 lines
3.7 KiB
Diff
The angr test suite performs analysis on several pre-compiled binaries
|
|
to ensure its binary analysis capabilities are working as intended.
|
|
Some of these binaries are also executed as part of the test suite to
|
|
test if the simulation engine provided by angr results in the same
|
|
output as native execution of the binary.
|
|
|
|
For Guix, this files as the glibc shared objects cannot be found.
|
|
Additionally, we don't really want to execute pre-compiled binaries
|
|
on Guix, hence we disable those tests.
|
|
|
|
diff --git a/tests/procedures/glibc/test_ctype_locale.py b/tests/procedures/glibc/test_ctype_locale.py
|
|
index ac3e1ee16..1fb0fd095 100755
|
|
--- a/tests/procedures/glibc/test_ctype_locale.py
|
|
+++ b/tests/procedures/glibc/test_ctype_locale.py
|
|
@@ -15,7 +15,7 @@ test_location = os.path.join(bin_location, "tests")
|
|
|
|
|
|
class TestCtypeLocale(unittest.TestCase):
|
|
- @skip_if_not_linux
|
|
+ @unittest.skip("test executes pre-compiled binaries")
|
|
def test_ctype_b_loc(self):
|
|
"""
|
|
test_ctype_locale.test_ctype_b_loc
|
|
@@ -61,7 +61,7 @@ class TestCtypeLocale(unittest.TestCase):
|
|
output = subprocess.check_output(bin_path, shell=True)
|
|
assert result == output
|
|
|
|
- @skip_if_not_linux
|
|
+ @unittest.skip("test executes pre-compiled binaries")
|
|
def test_ctype_tolower_loc(self):
|
|
"""
|
|
test_ctype_locale.test_ctype_tolower_loc
|
|
@@ -110,7 +110,7 @@ class TestCtypeLocale(unittest.TestCase):
|
|
output = subprocess.check_output(bin_path, shell=True)
|
|
assert result == output
|
|
|
|
- @skip_if_not_linux
|
|
+ @unittest.skip("test executes pre-compiled binaries")
|
|
def test_ctype_toupper_loc(self):
|
|
"""
|
|
test_ctype_locale.test_ctype_toupper_loc
|
|
diff --git a/tests/procedures/libc/test_sscanf.py b/tests/procedures/libc/test_sscanf.py
|
|
index 7c2da6f5e..e20952f54 100755
|
|
--- a/tests/procedures/libc/test_sscanf.py
|
|
+++ b/tests/procedures/libc/test_sscanf.py
|
|
@@ -14,7 +14,7 @@ test_location = os.path.join(bin_location, "tests")
|
|
|
|
|
|
class TestSscanf(unittest.TestCase):
|
|
- @unittest.skipUnless(sys.platform.startswith("linux"), "linux only")
|
|
+ @unittest.skip("test executes pre-compiled binaries")
|
|
def test_sscanf(self):
|
|
test_bin = os.path.join(test_location, "x86_64", "sscanf_test")
|
|
b = angr.Project(test_bin, auto_load_libs=False)
|
|
diff --git a/tests/procedures/libc/test_strtol.py b/tests/procedures/libc/test_strtol.py
|
|
index 4d7982b86..8818ced3b 100755
|
|
--- a/tests/procedures/libc/test_strtol.py
|
|
+++ b/tests/procedures/libc/test_strtol.py
|
|
@@ -15,7 +15,7 @@ class TestStrtol(unittest.TestCase):
|
|
# pylint: disable=no-self-use
|
|
|
|
@slow_test
|
|
- @unittest.skipUnless(sys.platform.startswith("linux"), "linux-only")
|
|
+ @unittest.skip("test executes pre-compiled binaries")
|
|
def test_strtol(self, threads=None):
|
|
test_bin = os.path.join(bin_location, "tests", "x86_64", "strtol_test")
|
|
# disabling auto_load_libs increases the execution time of the test case.
|
|
diff --git a/tests/sim/exec_insn/test_signed_div.py b/tests/sim/exec_insn/test_signed_div.py
|
|
index 46581020f..d5acc5370 100755
|
|
--- a/tests/sim/exec_insn/test_signed_div.py
|
|
+++ b/tests/sim/exec_insn/test_signed_div.py
|
|
@@ -2,6 +2,7 @@
|
|
# pylint: disable=missing-class-docstring,no-self-use,line-too-long
|
|
__package__ = __package__ or "tests.sim.exec_insn" # pylint:disable=redefined-builtin
|
|
|
|
+import pytest
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
@@ -16,7 +17,7 @@ test_location = os.path.join(bin_location, "tests")
|
|
|
|
|
|
class TestSignedDiv(TestCase):
|
|
- @skipUnless(sys.platform.startswith("linux"), "linux only")
|
|
+ @pytest.mark.skip(reason="test executes pre-compiled binaries")
|
|
def test_signed_div(self):
|
|
test_bin = os.path.join(test_location, "x86_64", "test_signed_div")
|
|
b = angr.Project(test_bin, auto_load_libs=False)
|