Mike Przybylski
Mike Przybylski
Just ran into this issue while building / testing on Debian 8 amd64. ``` mikep@mv-tricolor:~/bcc/obj-x86_64-linux-gnu$ sudo /usr/bin/ctest --force-new-ctest-process -j1 -V ... 20: Test command: /home/mikep/bcc/obj-x86_64-linux-gnu/tests/wrapper.sh "py_uprobes" "sudo" "/home/mikep/bcc/tests/python/test_uprobes.py" 20: Test...
Ugh. That's not it either... ``` mikep@mv-tricolor:~$ nm -D --defined-only /lib/x86_64-linux-gnu/libc.so.6 ... 000000000007ddb0 W malloc_stats ... ``` It's definitely defined, and after reading the man page for `malloc_stats()`, its pretty...
@rnav, sure enough, this is general problem for multiarch platforms. Thanks for pointing me in the right direction. ``` root@mv-tricolor:/sys/kernel/debug/tracing# cat uprobe_events p:uprobes/p__libx32_libc_so_6_0x76f30 /libx32/libc.so.6:0x0000000000076f30 r:uprobes/r__libx32_libc_so_6_0x76f30 /libx32/libc.so.6:0x0000000000076f30 ```
@pchaigno, Nice work on #875. I just patched `tests/python/test_uprobes.py` to take advantage of it and got those tests to pass. I'll submit a pull request with that, and a few...
> Have you tried https://docs.getutm.app/scripting/cheat-sheet/ I have, @osy. While it covers the creation of the vm, it does not provide any mechanisms for interacting with the guest OS at boot...
> This can be accomplished with an ISO image or attached USB device containing a kickstart/cloud-init/whatever definition file It can, but the process of creating that file is really finicky,...
I've run into this issue with some pipelines my colleagues and I are working on. Rebase + force-push would work better for our use case. Would it be possible to...