1#!/bin/sh 2# SPDX-License-Identifier: GPL-2.0 3# description: Basic test for tracers 4# flags: instance 5test -f available_tracers 6for t in `cat available_tracers`; do 7 echo $t > current_tracer 8done 9echo nop > current_tracer 10
1#!/bin/sh 2# SPDX-License-Identifier: GPL-2.0 3# description: Basic test for tracers 4# flags: instance 5test -f available_tracers 6for t in `cat available_tracers`; do 7 echo $t > current_tracer 8done 9echo nop > current_tracer 10