| Index: test/win/gyptest-link-base-address.py
|
| diff --git a/test/win/gyptest-link-base-address.py b/test/win/gyptest-link-base-address.py
|
| index f9a5e432ae21a1cb730413c74b070d6e5fd4e2bb..d58527ad7e9377222e5b6aeb1c59be5a481975bf 100644
|
| --- a/test/win/gyptest-link-base-address.py
|
| +++ b/test/win/gyptest-link-base-address.py
|
| @@ -25,7 +25,7 @@ if sys.platform == 'win32':
|
| return test.run_dumpbin('/headers', full_path)
|
|
|
| # Extract the image base address from the headers output.
|
| - image_base_reg_ex = re.compile('.*\s+([0-9]+) image base.*', re.DOTALL)
|
| + 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)
|
|
|