summaryrefslogtreecommitdiff
path: root/framework/exectest.py
diff options
context:
space:
mode:
Diffstat (limited to 'framework/exectest.py')
-rw-r--r--framework/exectest.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/framework/exectest.py b/framework/exectest.py
index c0b7508e..95650e2b 100644
--- a/framework/exectest.py
+++ b/framework/exectest.py
@@ -80,6 +80,10 @@ class PlainExecTest(Test):
results['result'] = 'abort'
elif proc.returncode in (-10, -11):
results['result'] = 'crash'
+ elif proc.returncode == -1073741819:
+ # 0xc0000005
+ # Windows access violation
+ results['result'] = 'crash'
elif proc.returncode != 0:
results['result'] = 'fail'
results['note'] = 'Returncode was %d' % (proc.returncode)