summaryrefslogtreecommitdiff
path: root/deps/gyp/test/win/gyptest-link-base-address.py
blob: d58527ad7e9377222e5b6aeb1c59be5a481975bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python

# Copyright 2013 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

"""
Make sure the base address setting is extracted properly.
"""

import TestGyp

import re
import sys

if sys.platform == 'win32':
  test = TestGyp.TestGyp(formats=['msvs', 'ninja'])

  CHDIR = 'linker-flags'
  test.run_gyp('base-address.gyp', chdir=CHDIR)
  test.build('base-address.gyp', test.ALL, chdir=CHDIR)

  def GetHeaders(exe):
    full_path = test.built_file_path(exe, chdir=CHDIR)
    return test.run_dumpbin('/headers', full_path)

  # Extract the image base address from the headers output.
  image_base_reg_ex = re.compile(r'.*\s+([0-9]+) image base.*', re.DOTALL)

  exe_headers = GetHeaders('test_base_specified_exe.exe')
  exe_match = image_base_reg_ex.match(exe_headers)

  if not exe_match or not exe_match.group(1):
    test.fail_test()
  if exe_match.group(1) != '420000':
    test.fail_test()

  dll_headers = GetHeaders('test_base_specified_dll.dll')
  dll_match = image_base_reg_ex.match(dll_headers)

  if not dll_match or not dll_match.group(1):
    test.fail_test()
  if dll_match.group(1) != '10420000':
    test.fail_test()

  default_exe_headers = GetHeaders('test_base_default_exe.exe')
  default_exe_match = image_base_reg_ex.match(default_exe_headers)

  if not default_exe_match or not default_exe_match.group(1):
    test.fail_test()
  if default_exe_match.group(1) != '400000':
    test.fail_test()

  default_dll_headers = GetHeaders('test_base_default_dll.dll')
  default_dll_match = image_base_reg_ex.match(default_dll_headers)

  if not default_dll_match or not default_dll_match.group(1):
    test.fail_test()
  if default_dll_match.group(1) != '10000000':
    test.fail_test()

  test.pass_test()