diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-05-01 16:20:10 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-05-03 13:41:27 -0400 |
commit | faf666f8148eeb305a9c4f78459aff2c7268016b (patch) | |
tree | e86a6dac663f0b1a03fc2624db65fb0a0cbf3702 /contrib/devtools | |
parent | 12aa2ac988d0ccb21019a20b109e018cf31b78cf (diff) |
Remove Windows 32 bit build
Diffstat (limited to 'contrib/devtools')
-rwxr-xr-x | contrib/devtools/test-security-check.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/contrib/devtools/test-security-check.py b/contrib/devtools/test-security-check.py index fd374f6328..bb864bfc0c 100755 --- a/contrib/devtools/test-security-check.py +++ b/contrib/devtools/test-security-check.py @@ -43,18 +43,6 @@ class TestSecurityChecks(unittest.TestCase): self.assertEqual(call_security_check(cc, source, executable, ['-Wl,-znoexecstack','-fstack-protector-all','-Wl,-zrelro','-Wl,-z,now','-pie','-fPIE']), (0, '')) - def test_32bit_PE(self): - source = 'test1.c' - executable = 'test1.exe' - cc = 'i686-w64-mingw32-gcc' - write_testcode(source) - - self.assertEqual(call_security_check(cc, source, executable, ['-Wl,--no-nxcompat','-Wl,--no-dynamicbase']), - (1, executable+': failed DYNAMIC_BASE NX')) - self.assertEqual(call_security_check(cc, source, executable, ['-Wl,--nxcompat','-Wl,--no-dynamicbase']), - (1, executable+': failed DYNAMIC_BASE')) - self.assertEqual(call_security_check(cc, source, executable, ['-Wl,--nxcompat','-Wl,--dynamicbase']), - (0, '')) def test_64bit_PE(self): source = 'test1.c' executable = 'test1.exe' |