diffblue-cbmc/regression/cbmc-library/__fpclassifyf-01
Michael Tautschnig a4d2828ffa Add KNOWNBUG regression test skeletons for all modelled C/C++ library functions
We model a number of library functions, but do not necessarily verify them
against any kind of specification. We should make sure that they are at least
free from memory errors. This commit introduces them effectively as a long to-do
list, where each test should eventually be completed and marked as CORE.

The tests were generated using the following script, with a manual removal of
java::java.io.InputStream.read:()I-01 afterwards:

 #!/bin/bash

 for lib in src/ansi-c/library/*.c src/cpp/library/*.c
 do
   echo "lib: $lib"
   header=$(basename $lib .c)
   echo "header: $header"

   for f in $(git grep FUNCTION: $lib | cut -f3 -d" " | sort | uniq)
   do
     echo "f: $f"
     test_dir="regression/cbmc-library/${f}-01"
     if [ ! -d $test_dir ]
     then
       mkdir -p $test_dir

       cat > $test_dir/main.c <<EOF
 #include <$header.h>
 #include <assert.h>

 int main()
 {
   $f();
   assert(0);
   return 0;
 }
 EOF
       git add $test_dir/main.c

       cat > $test_dir/test.desc <<EOF
 KNOWNBUG
 main.c
 --pointer-check --bounds-check
 ^EXIT=0$
 ^SIGNAL=0$
 ^VERIFICATION SUCCESSFUL$
 --
 ^warning: ignoring
 EOF
       git add $test_dir/test.desc
     fi
   done
 done

bla
2018-11-09 11:28:04 +00:00
..
main.c Add KNOWNBUG regression test skeletons for all modelled C/C++ library functions 2018-11-09 11:28:04 +00:00
test.desc Add KNOWNBUG regression test skeletons for all modelled C/C++ library functions 2018-11-09 11:28:04 +00:00