1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

build: enable fdsan in Android

This patch will update Android API in CI to 29 and will set up the fdsan
in the test runner.

Signed-off-by: Juan José Arboleda <soyjuanarbol@gmail.com>
Fixes: https://github.com/libuv/libuv/issues/4369
This commit is contained in:
Juan José Arboleda 2024-11-23 17:59:49 -05:00 committed by Saúl Ibarra Corretgé
parent 3d78d121f4
commit a94f2ad2b7
2 changed files with 18 additions and 4 deletions

View File

@ -43,7 +43,7 @@ jobs:
- name: Build and Test
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 24
api-level: 30
arch: x86_64
target: google_apis
ram-size: 2048M
@ -51,7 +51,7 @@ jobs:
disable-animations: true
script: |
echo "::group::Configure"
cmake -B build -S . -DCMAKE_TOOLCHAIN_FILE=$ANDROID_NDK/build/cmake/android.toolchain.cmake -DCMAKE_BUILD_TYPE=Release -DANDROID_ABI="x86_64" -DANDROID_PLATFORM=android-24
cmake -B build -S . -DCMAKE_TOOLCHAIN_FILE=$ANDROID_NDK/build/cmake/android.toolchain.cmake -DCMAKE_BUILD_TYPE=Release -DANDROID_ABI="x86_64" -DANDROID_PLATFORM=android-30
echo "::endgroup::"
echo "::group::Build"
@ -60,8 +60,8 @@ jobs:
## Correct some ld bugs that cause problems with libuv tests
wget "https://github.com/termux/termux-elf-cleaner/releases/download/v2.2.1/termux-elf-cleaner" -P build
chmod a+x build/termux-elf-cleaner
build/termux-elf-cleaner --api-level 24 ./build/uv_run_tests
build/termux-elf-cleaner --api-level 24 ./build/uv_run_tests_a
build/termux-elf-cleaner --api-level 30 ./build/uv_run_tests
build/termux-elf-cleaner --api-level 30 ./build/uv_run_tests_a
adb shell "su 0 setenforce 0" # to allow some syscalls like link, chmod, etc.

View File

@ -27,6 +27,11 @@
#include "task.h"
#include "uv.h"
/* Refs: https://github.com/libuv/libuv/issues/4369 */
#if defined(__ANDROID__)
#include <android/fdsan.h>
#endif
char executable_path[sizeof(executable_path)];
@ -142,6 +147,13 @@ void log_tap_result(int test_count,
fflush(stdout);
}
void enable_fdsan(void) {
/* Refs: https://github.com/libuv/libuv/issues/4369 */
#if defined(__ANDROID__)
android_fdsan_set_error_level(ANDROID_FDSAN_ERROR_LEVEL_WARN_ALWAYS);
#endif
}
int run_test(const char* test,
int benchmark_output,
@ -160,6 +172,8 @@ int run_test(const char* test,
main_proc = NULL;
process_count = 0;
enable_fdsan();
#ifndef _WIN32
/* Clean up stale socket from previous run. */
remove(TEST_PIPENAME);