Skip to content

Commit

Permalink
test: fix compiler warning in NodeCryptoEnv
Browse files Browse the repository at this point in the history
This fixes a warning in line 26: "warning: value computed is not used"
when calling BIO_seek().

Refs: nodejs/node#47160
PR-URL: nodejs/node#49206
Reviewed-By: Michael Dawson <midawson@redhat.com>
  • Loading branch information
sercher committed Apr 25, 2024
1 parent 51766a7 commit b78535c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions graal-nodejs/test/cctest/test_node_crypto_env.cc
Expand Up @@ -23,8 +23,9 @@ TEST_F(NodeCryptoEnv, LoadBIO) {
Local<String> key = String::NewFromUtf8(isolate_, "abcdef").ToLocalChecked();
node::crypto::BIOPointer bio(node::crypto::LoadBIO(*env, key));
#if OPENSSL_VERSION_NUMBER >= 0x30000000L
BIO_seek(bio.get(), 2);
ASSERT_EQ(BIO_tell(bio.get()), 2);
const int ofs = 2;
ASSERT_EQ(BIO_seek(bio.get(), ofs), ofs);
ASSERT_EQ(BIO_tell(bio.get()), ofs);
#endif
ASSERT_EQ(ERR_peek_error(), 0UL) << "There should not have left "
"any errors on the OpenSSL error stack\n";
Expand Down

0 comments on commit b78535c

Please sign in to comment.