< prev index next >

test/hotspot/jtreg/vmTestbase/nsk/jvmti/SetSystemProperty/setsysprop003/setsysprop003.cpp

Print this page
rev 52100 : 8212082: Remove the NSK_CPP_STUB macros for remaining vmTestbase/jvmti/[sS]*
Summary:
Reviewed-by:

*** 54,65 **** for (i = 0; i < PROPERTIES_COUNT; i++) { NSK_DISPLAY1(" property: %s\n", propDescList[i].name); NSK_DISPLAY1(" value: \"%s\"\n", propDescList[i].value); if (!NSK_JVMTI_VERIFY( ! NSK_CPP_STUB3(SetSystemProperty, jvmti, ! propDescList[i].name, propDescList[i].value))) { success = NSK_FALSE; } } return success; --- 54,64 ---- for (i = 0; i < PROPERTIES_COUNT; i++) { NSK_DISPLAY1(" property: %s\n", propDescList[i].name); NSK_DISPLAY1(" value: \"%s\"\n", propDescList[i].value); if (!NSK_JVMTI_VERIFY( ! jvmti->SetSystemProperty(propDescList[i].name, propDescList[i].value))) { success = NSK_FALSE; } } return success;
< prev index next >