10 lines
97 B
Bash
10 lines
97 B
Bash
#!/bin/sh
|
|
|
|
PATH=${PATH}:@ATFBIN@
|
|
export PATH
|
|
|
|
if [ -n "@ATFBIN@" ]
|
|
then
|
|
atf-run | atf-report
|
|
fi
|