1 # 2 # Definition of custom hooks for atf-run. 3 # 4 # Uncomment any hooks that you want to override and add your own code 5 # to them. Some sample calls are included in them. Be very careful 6 # with what you print from here. 7 # 8 # See atf-run(1) for more details. 9 # 10 11 #info_start_hook() 12 #{ 13 # default_info_start_hook "${@}" 14 # 15 # atf_tps_writer_info "extra.info" "An example" 16 #} 17 18 #info_end_hook() 19 #{ 20 # default_info_end_hook "${@}" 21 # 22 # atf_tps_writer_info "extra.info" "An example" 23 #} 24