Index: snapshot/win/end_to_end_test.py |
diff --git a/snapshot/win/end_to_end_test.py b/snapshot/win/end_to_end_test.py |
index 9d8ab27ff3a5f050edcf5560c40dafd56140b77c..48c58a7667d3d3588452f8922f385877fa2ab5d8 100644 |
--- a/snapshot/win/end_to_end_test.py |
+++ b/snapshot/win/end_to_end_test.py |
@@ -195,6 +195,12 @@ def main(args): |
print >>sys.stderr, 'could not find cdb' |
return 1 |
+ # Make sure we can download Windows symbols. |
+ if not os.environ.get('_NT_SYMBOL_PATH'): |
+ symbol_dir = MakeTempDir() |
+ os.environ['_NT_SYMBOL_PATH'] = ( |
+ 'SRV*' + symbol_dir + '*https://msdl.microsoft.com/download/symbols') |
brucedawson
2015/10/09 23:30:55
Doesn't first-time use of Microsoft's symbol serve
|
+ |
pipe_name = r'\\.\pipe\end-to-end_%s_%s' % ( |
os.getpid(), str(random.getrandbits(64))) |