summary refs log tree commit diff
path: root/src/test/run-make/rustdoc-hidden-line/verify.sh
blob: c1d817c998d2972df80c2163bdff944b7fab5a59 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

file="$1/doc/foo/fn.foo.html"

grep -v 'invisible' $file &&
grep '#\[deriving(Eq)\] // Bar' $file

exit $?