Skip to content
Snippets Groups Projects

Support EL9 for throughput tests

Merged Rosen Matev requested to merge rm-el9-tput into master
@@ -40,12 +40,13 @@ HEAPTRACK_ARGS = [
def main(listOfLogs, hltlabel, throughput, ht_file, heaptrack, perf_exe,
no_inline):
if "centos7" in BINARY_TAG.split("-"):
binary_tag = os.environ["BINARY_TAG"]
if "centos7" in binary_tag.split("-"):
llvm_cxxfilt_path = "/cvmfs/sft.cern.ch/lcg/contrib/clang/12/x86_64-centos7/bin/llvm-cxxfilt"
elif "el9" in BINRARY_TAG.split("-"):
elif "el9" in binary_tag.split("-"):
llvm_cxxfilt_path = "/cvmfs/sft.cern.ch/lcg/releases/clang/14.0.6-14bdb/x86_64-centos9/bin/llvm-cxxfilt"
else:
raise RuntimeError(f"{BINARY_TAG=} not supported")
raise RuntimeError(f"{binary_tag=} not supported")
if os.path.isfile(llvm_cxxfilt_path):
demangle = llvm_cxxfilt_path
else:
Loading