| Index: tools/archive_crash.py
|
| ===================================================================
|
| --- tools/archive_crash.py (revision 43131)
|
| +++ tools/archive_crash.py (working copy)
|
| @@ -33,7 +33,13 @@
|
| archived_filename = '%s%s' % (gs_location, filename.split('/').pop())
|
| print 'Dump now available in %s' % archived_filename
|
|
|
| +def TEMPArchiveBuild():
|
| + d = '/b/build/slave/vm-linux-debug-x64-asan-be/build/dart/out/DebugX64/dart'
|
| + CopyToGCS(d)
|
| +
|
| def Main():
|
| + if 'PWD' in os.environ and 'x64-asan' in os.environ['PWD']:
|
| + TEMPArchiveBuild()
|
| if utils.GuessOS() != 'linux':
|
| print 'Currently only archiving crash dumps on linux'
|
| return 0
|
|
|