Advertisement
Guest User

Untitled

a guest
Apr 4th, 2013
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. diff --git a/tests/python/proton_tests/soak.py b/tests/python/proton_tests/soak.py
  2. index e40fc2b..3a429fb 100644
  3. --- a/tests/python/proton_tests/soak.py
  4. +++ b/tests/python/proton_tests/soak.py
  5. @@ -204,7 +204,7 @@ class MessengerSenderValgrind(MessengerSenderC):
  6. suppressions = os.path.join(os.path.dirname(__file__),
  7. "valgrind.supp" )
  8. self._command = ["valgrind", "--error-exitcode=1", "--quiet",
  9. - "--trace-children=yes", "--leak-check=full",
  10. + "--trace-children=yes", "--leak-check=full", "--gen-suppressions=yes",
  11. "--suppressions=%s" % suppressions] + self._command
  12.  
  13. class MessengerReceiverC(MessengerReceiver):
  14. @@ -221,7 +221,7 @@ class MessengerReceiverValgrind(MessengerReceiverC):
  15. suppressions = os.path.join(os.path.dirname(__file__),
  16. "valgrind.supp" )
  17. self._command = ["valgrind", "--error-exitcode=1", "--quiet",
  18. - "--trace-children=yes", "--leak-check=full",
  19. + "--trace-children=yes", "--leak-check=full", "--gen-suppressions=yes",
  20. "--suppressions=%s" % suppressions] + self._command
  21.  
  22. class MessengerSenderPython(MessengerSender):
  23. diff --git a/tests/python/proton_tests/valgrind.supp b/tests/python/proton_tests/valgrind.supp
  24. index 1ff3b76..78e125a 100644
  25. --- a/tests/python/proton_tests/valgrind.supp
  26. +++ b/tests/python/proton_tests/valgrind.supp
  27. @@ -1,13 +1,36 @@
  28. {
  29. - SSL ssl3_ctx_ctrl uses uninitialized data (expected) - 1
  30. - Memcheck:Value8
  31. - ...
  32. + SSL does a number of uninitialized accesses (expected) 1
  33. + Memcheck:Cond
  34. + fun:BN_bin2bn
  35. + obj:*
  36. + obj:*
  37. fun:ssl3_ctx_ctrl
  38. }
  39.  
  40. {
  41. - SSL ssl3_ctx_ctrl uses uninitialized data (expected) - 2
  42. + SSL does a number of uninitialized accesses (expected) 2
  43. Memcheck:Cond
  44. - ...
  45. + fun:BN_num_bits_word
  46. + fun:BN_num_bits
  47. + fun:BN_mod_exp_mont_consttime
  48. + obj:*
  49. + fun:ssl3_ctx_ctrl
  50. +}
  51. +
  52. +{
  53. + SSL does a number of uninitialized accesses (expected) 3
  54. + Memcheck:Value8
  55. + fun:BN_num_bits_word
  56. + fun:BN_num_bits
  57. + fun:BN_mod_exp_mont_consttime
  58. + obj:*
  59. + fun:ssl3_ctx_ctrl
  60. +}
  61. +
  62. +{
  63. + SSL does a number of uninitialized accesses (expected) 4
  64. + Memcheck:Value8
  65. + fun:BN_mod_exp_mont_consttime
  66. + obj:*
  67. fun:ssl3_ctx_ctrl
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement