Skip to content

Commit

Permalink
tests/make_graph: fix function matching algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
panchoh committed Dec 10, 2018
1 parent e7099d1 commit 8f8eaf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/make_graph
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ do
esac

func_name=$(cat /tmp/function)
cat /tmp/data | grep -F "$func_name" | tee /tmp/datasel | \
cat /tmp/data | awk "\$7 == \"$func_name\"" | tee /tmp/datasel | \
gnuplot -e "
set terminal dumb size $columns $lines enhanced ansi256;
set title '$func_name';
Expand Down

0 comments on commit 8f8eaf7

Please sign in to comment.