< prev index next >

test/jtreg-ext/requires/VMProps.java

Print this page
rev 50225 : PPC64: Fix jtreg RTM tests after "8203305: Improve TM detection for enabling RTM on Linux / POWER9"

*** 258,270 **** /** * @return true if VM runs RTM supported CPU and false otherwise. */ protected String vmRTMCPU() { ! boolean vmRTMCPU = (Platform.isPPC() ? CPUInfo.hasFeature("tcheck") : CPUInfo.hasFeature("rtm")); ! ! return "" + vmRTMCPU; } /** * @return true if VM supports AOT and false otherwise */ --- 258,268 ---- /** * @return true if VM runs RTM supported CPU and false otherwise. */ protected String vmRTMCPU() { ! return "" + CPUInfo.hasFeature("rtm"); } /** * @return true if VM supports AOT and false otherwise */
< prev index next >