summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorStefan Sauer <ensonic@users.sf.net>2019-04-07 21:41:09 +0200
committerStefan Sauer <ensonic@users.sf.net>2019-04-08 10:16:37 +0200
commita1fe46ba6c309e8a5a1e7ea3584f551b602e89c0 (patch)
tree2ad147b1cf8c7db7e1fe68af255e05f61e6208a6 /tests
parent9607f60d9faad59147ad11b3d71d391c30dff2fd (diff)
downloadgtk-doc-a1fe46ba6c309e8a5a1e7ea3584f551b602e89c0.tar.gz
mkdb: use lower case symbol suffixes
Also use the same identifier as in the docs (eg 'stability' instead of 'Stability_Level'. This will let us simplify the code in a followup change.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/fail.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/fail.sh b/tests/fail.sh
index f91ec37..9a99145 100755
--- a/tests/fail.sh
+++ b/tests/fail.sh
@@ -13,17 +13,17 @@ echo "Running suite(s): gtk-doc-$suite";
# tests
# check missing section description
# we can't just check for a missing "tester_nodocs" entry
-grep >/dev/null "tester_nodocs:Long_Description" $DOC_MODULE-undocumented.txt
+grep >/dev/null "tester_nodocs:long_description" $DOC_MODULE-undocumented.txt
if test $? = 1 ; then failed=`expr $failed + 1`; fi
tested=`expr $tested + 1`
# check missing section long description
-grep >/dev/null "tester_nolongdesc:Long_Description" $DOC_MODULE-undocumented.txt
+grep >/dev/null "tester_nolongdesc:long_description" $DOC_MODULE-undocumented.txt
if test $? = 1 ; then failed=`expr $failed + 1`; fi
tested=`expr $tested + 1`
# check missing section short description
-grep >/dev/null "tester_noshortdesc:Short_Description" $DOC_MODULE-undocumented.txt
+grep >/dev/null "tester_noshortdesc:short_description" $DOC_MODULE-undocumented.txt
if test $? = 1 ; then failed=`expr $failed + 1`; fi
tested=`expr $tested + 1`