1*7c3d14c8STreehugger Robot# Test that __llvm_profile_set_filename is honored by shared libary too. 2*7c3d14c8STreehugger RobotRUN: mkdir -p %t.d 3*7c3d14c8STreehugger RobotRUN: %clang_profgen=%t.shared.profraw -fPIC -shared -o %t.d/t.shared %S/../Inputs/instrprof-dlopen-func.c 4*7c3d14c8STreehugger RobotRUN: %clang_profgen -DCALL_SHARED -o %t.m -O3 -rpath %t.d %t.d/t.shared %S/../instrprof-set-filename.c 5*7c3d14c8STreehugger RobotRUN: %run %t.m %t.main.profraw 6*7c3d14c8STreehugger RobotRUN: llvm-profdata show %t.main.profraw | FileCheck --check-prefix=SHARED %s 7*7c3d14c8STreehugger Robot 8*7c3d14c8STreehugger Robot# SHARED: Total functions: 2 9