[BACK]Return to test-variants.sh CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / usr.bin / make

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/usr.bin/make/Attic/test-variants.sh between version 1.10 and 1.11

version 1.10, 2021/04/03 11:08:40 version 1.11, 2021/09/12 09:51:14
Line 22  testcase() {
Line 22  testcase() {
         env -i PATH="$PATH" USETOOLS="no" "$@" \          env -i PATH="$PATH" USETOOLS="no" "$@" \
                 sh -ce "make -s cleandir" \                  sh -ce "make -s cleandir" \
         && env -i PATH="$PATH" USETOOLS="no" "$@" \          && env -i PATH="$PATH" USETOOLS="no" "$@" \
                 sh -ce "make -ks all" \                  sh -ce "make -ks -j6 dependall" \
         && size *.o make \          && size *.o make \
         && env -i PATH="$PATH" USETOOLS="no" MALLOC_OPTIONS="JA" \          && env -i PATH="$PATH" USETOOLS="no" MALLOC_OPTIONS="JA" \
                 _MKMSG_TEST=":" "$@" \                  _MKMSG_TEST=":" "$@" \
Line 120  testcase USER_CFLAGS="-O0 -ggdb"
Line 120  testcase USER_CFLAGS="-O0 -ggdb"
 # Ensure that every inline function is declared as MAKE_ATTR_UNUSED.  # Ensure that every inline function is declared as MAKE_ATTR_UNUSED.
 testcase USER_CPPFLAGS="-Dinline="  testcase USER_CPPFLAGS="-Dinline="
   
   # Is expected to fail with "<stdbool.h> is included in pre-C99 mode".
 testcase USER_CFLAGS="-std=c90" USER_CPPFLAGS="-Dinline="  testcase USER_CFLAGS="-std=c90" USER_CPPFLAGS="-Dinline="
   
   # This workaround is necessary on NetBSD 9.99 since main.c includes
   # <sys/sysctl.h>, which includes <stdbool.h> even in pre-C99 mode.
   testcase USER_CFLAGS="-std=c90" USER_CPPFLAGS="-Dinline= -DUSE_C99_BOOLEAN"
   
 #testcase USER_CFLAGS="-std=c90 -pedantic" USER_CPPFLAGS="-Dinline="  #testcase USER_CFLAGS="-std=c90 -pedantic" USER_CPPFLAGS="-Dinline="
   
   # Is expected to fail with "<stdbool.h> is included in pre-C99 mode".
 testcase USER_CFLAGS="-ansi" USER_CPPFLAGS="-Dinline="  testcase USER_CFLAGS="-ansi" USER_CPPFLAGS="-Dinline="
   
 # config.h does not allow overriding these features  # config.h does not allow overriding these features

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

CVSweb <webmaster@jp.NetBSD.org>