| Index: tools/command_tester.py
 | 
| diff --git a/tools/command_tester.py b/tools/command_tester.py
 | 
| index ddb89cead34db55568a608d5112229e6a6c81e45..fc199f91c28a2cf8f7238edbea353dcdc5c59060 100755
 | 
| --- a/tools/command_tester.py
 | 
| +++ b/tools/command_tester.py
 | 
| @@ -205,6 +205,10 @@ win64_exit_via_ntdll_patch = [
 | 
|  # returns SIGSEGV, except for actual x86 segmentation violations. 64-bit
 | 
|  # processes on Mac OS X behave differently.
 | 
|  status_map = {
 | 
| +    'sigtrap' : {
 | 
| +        'linux2': [-5], # SIGTRAP
 | 
| +        'darwin': [-5], # SIGTRAP
 | 
| +        },
 | 
|      'trusted_sigabrt' : {
 | 
|          'linux2': [-6], # SIGABRT
 | 
|          'mac32': [-6], # SIGABRT
 | 
| 
 |