Skip to content

Commit 1c9bbeb

Browse files
committed
disable armv7 because of NULL input parameter failures
Signed-off-by: Hans Zandbelt <[email protected]>
1 parent 67a803c commit 1c9bbeb

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

.github/workflows/archs.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,10 @@ jobs:
1515
strategy:
1616
matrix:
1717
include:
18-
#test/check_cache.c:74:F:core:test_cache_redis:0: Assertion 'value == ((void *)0)' failed: value == 0x4006a290, ((void *)0) == 0
19-
#test/check_nginx.c:106:E:core:test_request_context:0: (after this point) Received signal 11 (Segmentation fault)
20-
#test/check_nginx.c:118:E:core:test_nginx_http_response_set:0: (after this point) Received signal 11 (Segmentation fault)
21-
- arch: armv7
22-
distro: ubuntu_latest
23-
nginx_version: 1.24.0
18+
# passing literal NULL as a function input paramter does not seem to work on armv7; need compile flag??
19+
# - arch: armv7
20+
# distro: ubuntu_latest
21+
# nginx_version: 1.24.0
2422
- arch: aarch64
2523
distro: ubuntu_latest
2624
nginx_version: 1.24.0

test/check_jose.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -250,9 +250,8 @@ START_TEST(test_jwt_encrypt)
250250
ck_assert_int_eq(rc, false);
251251
ck_assert_ptr_eq(cser, NULL);
252252

253-
// TODO: fails on armv7??
254-
//rc = oauth2_jose_jwt_encrypt(_log, secret1, payload1, NULL);
255-
//ck_assert_int_eq(rc, false);
253+
rc = oauth2_jose_jwt_encrypt(_log, secret1, payload1, NULL);
254+
ck_assert_int_eq(rc, false);
256255
}
257256
END_TEST
258257

0 commit comments

Comments
 (0)