summaryrefslogtreecommitdiff
path: root/deps/gyp/test/win/gyptest-link-force-symbol-reference.py
blob: 235e94f71bd3d59cc1beb82f924811eca380dc9e (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
#!/usr/bin/env python

# Copyright (c) 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 ForceSymbolReference is translated properly.
"""

import TestGyp

import sys

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

  CHDIR = 'linker-flags'
  test.run_gyp('force-symbol-reference.gyp', chdir=CHDIR)
  test.build('force-symbol-reference.gyp', test.ALL, chdir=CHDIR)

  output = test.run_dumpbin(
      '/disasm', test.built_file_path('test_force_reference.exe', chdir=CHDIR))
  if '?x@@YAHXZ:' not in output or '?y@@YAHXZ:' not in output:
    test.fail_test()
  test.pass_test()