8d5d041590
Find new home for downstream RHEL tests. Upstream them. The set of tests used for fedora gating stays intact: The gating tests are only those having the tier1 tag set in their main.fmf file. The testplan plans/ci.fmf filters the others out from gating. The set of Fedora gating tests stays the same as it was before this change.
16 lines
469 B
Plaintext
16 lines
469 B
Plaintext
function mypr:long(){
|
|
printf("================================================================================\n");
|
|
printf("Probed function: [%s]\n\n", probefunc());
|
|
printf ("Backtrace:\n");
|
|
|
|
print_ubacktrace();
|
|
return 0;
|
|
}
|
|
|
|
|
|
|
|
probe process("classes").function("public*") { mypr(); }
|
|
probe process("classes").function("private*") { mypr(); }
|
|
probe process("classes").function("recursive*") { mypr(); }
|
|
probe process("classes").function("main*") { mypr(); }
|