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.
24 lines
620 B
Plaintext
24 lines
620 B
Plaintext
probe process("classes").function("Explicit::Explicit"){
|
|
printf("Explicit constructor start\n");
|
|
}
|
|
|
|
probe process("classes").function("Explicit::~Explicit"){
|
|
printf("Explicit destructor start\n");
|
|
}
|
|
|
|
probe process("classes").function("Explicit::Explicit").return{
|
|
printf("Explicit constructor end\n");
|
|
}
|
|
|
|
probe process("classes").function("Explicit::~Explicit").return{
|
|
printf("Explicit destructor end\n");
|
|
}
|
|
|
|
//probe process("classes").function("Implicit::Implicit"){
|
|
// printf("Implicitconstructor\n");
|
|
//}
|
|
|
|
//probe process("classes").function("Implicit::Implicit"){
|
|
// printf("Implicit constructor\n");
|
|
//}
|