We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0e2c88 commit 32a309fCopy full SHA for 32a309f
src/ansi-c/library_check.sh
@@ -16,3 +16,10 @@ for f in "$@"; do
16
rm __libcheck.s __libcheck.i __libcheck.c
17
[ "${ec}" -eq 0 ] || exit "${ec}"
18
done
19
+
20
+grep '^/\* FUNCTION:' ../*/library/* | cut -f3 -d" " | sort -u > __functions
21
+ls ../../regression/cbmc-library/ | grep -- - | cut -f1 -d- | sort -u > __tests
22
+diff -u __tests __functions
23
+ec="${?}"
24
+rm __functions __tests
25
+exit "${ec}"
0 commit comments