Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c625c11a authored by Julien Desprez's avatar Julien Desprez
Browse files

Fix fuzzer output on failure and shared_libs

This will help debug failures in the fuzzer and declare properly
the shared_lib dependency on libc++ instead of assuming the
common libs available.

Test: ABTD https://android-build.corp.google.com/abtd/run/L45900030007859592/?referrer=email
Bug: 355009651

Change-Id: I93dc2907389968b78fc59c57162ac9499f1a5704
parent 13c29183
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -59,6 +59,11 @@ sh_test_host {
        darwin: {
            enabled: false,
        },
        host: {
            data_libs: [
                "libc++",
            ],
        },
    },
    test_suites: ["general-tests"],
}
+1 −0
Original line number Diff line number Diff line
@@ -39,6 +39,7 @@ for CRASH_TYPE in PLAIN KNOWN_UID AID_SYSTEM AID_ROOT BINDER DUMP SHELL_CMD; do
    else
        echo -e "${color_failed}Failed: Unable to find successful fuzzing output from test_service_fuzzer_should_crash"
        echo "${color_reset}"
        cat "$FUZZER_OUT"
        exit 1
    fi
done