aboutsummaryrefslogtreecommitdiff
path: root/contrib/devtools
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2021-03-13 18:29:08 +0200
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2021-03-13 18:29:08 +0200
commit0fc0c00f7ab1a90bf673ba1a01b021d3b1fa7df0 (patch)
tree4741c188077b66cdb762ceea583d4bdb3ec3dec3 /contrib/devtools
parent61a0f8f9cc2592dc39bb71a88c61d8da05771da0 (diff)
downloadbitcoin-0fc0c00f7ab1a90bf673ba1a01b021d3b1fa7df0.tar.xz
test: Drop unused get_machine function
The removed get_machine function is no longer used since #21255.
Diffstat (limited to 'contrib/devtools')
-rwxr-xr-xcontrib/devtools/test-symbol-check.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/contrib/devtools/test-symbol-check.py b/contrib/devtools/test-symbol-check.py
index 6bea5d90f8..106dfd2c5a 100755
--- a/contrib/devtools/test-symbol-check.py
+++ b/contrib/devtools/test-symbol-check.py
@@ -16,10 +16,6 @@ def call_symbol_check(cc, source, executable, options):
os.remove(executable)
return (p.returncode, p.stdout.rstrip())
-def get_machine(cc):
- p = subprocess.run([cc,'-dumpmachine'], stdout=subprocess.PIPE, universal_newlines=True)
- return p.stdout.rstrip()
-
class TestSymbolChecks(unittest.TestCase):
def test_ELF(self):
source = 'test1.c'