1#!/usr/bin/env python 2 3# Copyright (c) 2012 Google Inc. All rights reserved. 4# Use of this source code is governed by a BSD-style license that can be 5# found in the LICENSE file. 6 7""" 8Make sure tsaware setting is extracted properly. 9""" 10 11import TestGyp 12 13import sys 14 15if sys.platform == 'win32': 16 test = TestGyp.TestGyp(formats=['msvs', 'ninja']) 17 18 CHDIR = 'linker-flags' 19 test.run_gyp('tsaware.gyp', chdir=CHDIR) 20 test.build('tsaware.gyp', test.ALL, chdir=CHDIR) 21 22 def GetHeaders(exe): 23 return test.run_dumpbin('/headers', test.built_file_path(exe, chdir=CHDIR)) 24 25 # Explicitly off, should not be marked NX compatiable. 26 if 'Terminal Server Aware' in GetHeaders('test_tsaware_no.exe'): 27 test.fail_test() 28 29 # Explicitly on. 30 if 'Terminal Server Aware' not in GetHeaders('test_tsaware_yes.exe'): 31 test.fail_test() 32 33 test.pass_test() 34