Created
September 29, 2023 01:06
-
-
Save rzezeski/6c4169e3d7085958cf2404e6e5ddb958 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Output from zig test suite: | |
run blocks: error: the following command terminated with signal 9 (expected exited with code 0): | |
/tmp/build_rpz/zig-0.12.0/zig-0.12.0/zig-cache/o/22d8368ac9f2e8a052a6f4d05c51b9e7/blocks | |
run blocks: error: the following command terminated with signal 9 (expected exited with code 0): | |
/tmp/build_rpz/zig-0.12.0/zig-0.12.0/zig-cache/o/2c510bec3a90471080d72bd821f79538/blocks | |
Output from dtrace if I attempt to run the first executable manually: | |
$ pfexec dtrace -qn 'exec /strstr(args[0], "blocks") != NULL/ { printf("process %s [%d] exec %s\n", execname, pid, args[0]); } exec-failure { printf("failed to exec: %s [%d]: errno = %d\n", execname, pid, args[0]); } signal-send { printf("process %s [%d] sent signal %d to %s [%d]\n", execname, pid, args[2], args[1]->pr_fname, args[1]->pr_pid); }' | |
process bash [2284] exec /tmp/build_rpz/zig-0.12.0/zig-0.12.0/zig-cache/o/22d8368ac9f2e8a052a6f4d05c51b9e7/blocks | |
process bash [2284] sent signal 9 to bash [2284] | |
failed to exec: bash [2284]: errno = 8 | |
process sched [0] sent signal 18 to bash [22648] | |
process bash [22648] sent signal 20 to bash [22648] | |
^C | |
process sshd [15508] sent signal 2 to dtrace [2283] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Elf header: