Skip to content
Snippets Groups Projects

Support EL9 for throughput tests

Merged Rosen Matev requested to merge rm-el9-tput into master
2 files
+ 15
3
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -38,7 +38,13 @@ HEAPTRACK_ARGS = [
def main(listOfLogs, hltlabel, throughput, produceYAML, ht_file, heaptrack,
perf_exe, no_inline):
llvm_cxxfilt_path = "/cvmfs/sft.cern.ch/lcg/contrib/clang/12/x86_64-centos7/bin/llvm-cxxfilt"
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 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")
if os.path.isfile(llvm_cxxfilt_path):
demangle = llvm_cxxfilt_path
else:
Loading