Skip to content

Commit

Permalink
fixup! Skip OpenSSL spec on aarch64-linux-gnu
Browse files Browse the repository at this point in the history
  • Loading branch information
straight-shoota committed Sep 17, 2024
1 parent 8cbce4d commit 42bd683
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spec/std/openssl/ssl/server_spec.cr
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ require "../../../support/ssl"

# TODO: Windows networking in the interpreter requires #12495
# TODO: libssl 1.1.1 on aarch64 with gnu libc seems to be broken
{% if (flag?(:interpreted) && flag?(:win32)) || (flag?(:aarch64) && flag?(:gnu) && LibSSL::OPENSSL != "0.0.0" && compare_versions(LibSSL::OPENSSL, "1.1.1") <= 0) %}
{% if (flag?(:interpreted) && flag?(:win32)) || (flag?(:aarch64) && flag?(:gnu) && LibSSL::OPENSSL_VERSION != "0.0.0" && compare_versions(LibSSL::OPENSSL_VERSION, "1.1.1") <= 0) %}
pending OpenSSL::SSL::Server
{% skip_file %}
{% end %}
Expand Down
2 changes: 1 addition & 1 deletion spec/std/openssl/ssl/socket_spec.cr
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require "../../../support/ssl"

# TODO: Windows networking in the interpreter requires #12495
# TODO: libssl 1.1.1 on aarch64 with gnu libc seems to be broken
{% if (flag?(:interpreted) && flag?(:win32)) || (flag?(:aarch64) && flag?(:gnu) && LibSSL::OPENSSL != "0.0.0" && compare_versions(LibSSL::OPENSSL, "1.1.1") <= 0) %}
{% if (flag?(:interpreted) && flag?(:win32)) || (flag?(:aarch64) && flag?(:gnu) && LibSSL::OPENSSL_VERSION != "0.0.0" && compare_versions(LibSSL::OPENSSL_VERSION, "1.1.1") <= 0) %}
pending OpenSSL::SSL::Socket
{% skip_file %}
{% end %}
Expand Down

0 comments on commit 42bd683

Please sign in to comment.