diff options
author | William Deegan <bill@baddogconsulting.com> | 2018-08-20 01:02:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-20 01:02:45 (GMT) |
commit | 4b2c725594df59cb672ff8b1c2701a64c2e5800c (patch) | |
tree | 538bd3d61ff4cc1ffb5608b29328b36ab035a943 /test | |
parent | 20df75b33562071d115e33916315da37d9e83a7d (diff) | |
parent | 9968415b4bbb46ab95023077844590b962e1ffcf (diff) | |
download | SCons-4b2c725594df59cb672ff8b1c2701a64c2e5800c.zip SCons-4b2c725594df59cb672ff8b1c2701a64c2e5800c.tar.gz SCons-4b2c725594df59cb672ff8b1c2701a64c2e5800c.tar.bz2 |
Merge pull request #3179 from bdbaddog/update_nasm_test_to_run
Fix test/AS/nasm.py as it previously would only run with nasm version…
Diffstat (limited to 'test')
-rw-r--r-- | test/AS/nasm.py | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/test/AS/nasm.py b/test/AS/nasm.py index 1733789..4d57951 100644 --- a/test/AS/nasm.py +++ b/test/AS/nasm.py @@ -47,17 +47,17 @@ if sys.platform.find('linux') == -1: test.skip_test("skipping test on non-Linux platform '%s'\n" % sys.platform) try: - import popen2 - stdout = popen2.popen2('nasm -v')[0] + import subprocess + stdout = subprocess.check_output(['nasm','-v']) except OSError: test.skip_test('could not determine nasm version; skipping test\n') else: - version = stdout.read().split()[2] - if version[:4] != '0.98': + version = stdout.split()[2].split('.') + if int(version[0]) ==0 and int(version[1]) < 98: test.skip_test("skipping test of nasm version %s\n" % version) machine = os.uname()[4] - if not machine in ('i386', 'i486', 'i586', 'i686'): + if not machine in ('i386', 'i486', 'i586', 'i686', 'x86_64'): fmt = "skipping test of nasm %s on non-x86 machine '%s'\n" test.skip_test(fmt % (version, machine)) @@ -78,6 +78,8 @@ test.file_fixture('wrapper.py') test.write('SConstruct', """ eee = Environment(tools = ['gcc', 'gnulink', 'nasm'], + CFLAGS = ['-m32'], + LINKFLAGS = '-m32', ASFLAGS = '-f %(nasm_format)s') fff = eee.Clone(AS = r'%(_python_)s wrapper.py ' + WhereIs('nasm')) eee.Program(target = 'eee', source = ['eee.asm', 'eee_main.c']) @@ -99,6 +101,7 @@ name: """) test.write('eee_main.c', r""" +#include <stdio.h> extern char name[]; int |