1# Check that the environment variable is set correctly 2# RUN: %{python} %s | FileCheck %s 3 4# Python script to read the environment variable 5# and print its value 6import os 7 8llvm_profile_file = os.environ.get('LLVM_PROFILE_FILE') 9print(llvm_profile_file) 10 11# CHECK: per-test-coverage0.profraw 12