File: dont-test-cyphers-that-dont-have-fixtures

package info (click to toggle)
ruby-net-ssh 1%3A3.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,520 kB
  • ctags: 1,913
  • sloc: ruby: 13,740; makefile: 3
file content (16 lines) | stat: -rw-r--r-- 567 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: Don't test cyphers that don't have fixtures

Author: David Suárez <david.sephirot@gmail.com>
Last-Update: 2014-10-5

--- a/test/transport/test_packet_stream.rb
+++ b/test/transport/test_packet_stream.rb
@@ -1690,6 +1690,8 @@ module Transport
         next
       end
 
+      next if cipher_name == 'aes256-gcm@openssh.com' or cipher_name == 'aes128-gcm@openssh.com'
+
       # JRuby Zlib implementation (1.4 & 1.5) does not have byte-to-byte compatibility with MRI's.
       # skip these 80 or more tests under JRuby.
       if defined?(JRUBY_VERSION)