Skip to content

Commit c3ce995

Browse files
committed
add unittests dir to build tree
1 parent 17ad279 commit c3ce995

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

configure

+6-5
Original file line numberDiff line numberDiff line change
@@ -18513,11 +18513,11 @@ if test x$ac_prog_cxx_stdcxx = xno
1851318513
then :
1851418514
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CXX option to enable C++11 features" >&5
1851518515
printf %s "checking for $CXX option to enable C++11 features... " >&6; }
18516-
if test ${ac_cv_prog_cxx_11+y}
18516+
if test ${ac_cv_prog_cxx_cxx11+y}
1851718517
then :
1851818518
printf %s "(cached) " >&6
1851918519
else $as_nop
18520-
ac_cv_prog_cxx_11=no
18520+
ac_cv_prog_cxx_cxx11=no
1852118521
ac_save_CXX=$CXX
1852218522
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1852318523
/* end confdefs.h. */
@@ -18559,11 +18559,11 @@ if test x$ac_prog_cxx_stdcxx = xno
1855918559
then :
1856018560
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CXX option to enable C++98 features" >&5
1856118561
printf %s "checking for $CXX option to enable C++98 features... " >&6; }
18562-
if test ${ac_cv_prog_cxx_98+y}
18562+
if test ${ac_cv_prog_cxx_cxx98+y}
1856318563
then :
1856418564
printf %s "(cached) " >&6
1856518565
else $as_nop
18566-
ac_cv_prog_cxx_98=no
18566+
ac_cv_prog_cxx_cxx98=no
1856718567
ac_save_CXX=$CXX
1856818568
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1856918569
/* end confdefs.h. */
@@ -25008,7 +25008,7 @@ fi
2500825008

2500925009
CFLAGS="$orig_CFLAGS"
2501025010

25011-
ac_config_files="$ac_config_files Makefile gretl_sh gretl.pc gui/Makefile gui/debug xdg/gretl.desktop xdg/gretl_edit.desktop xdg/Makefile cli/Makefile cli/debug lib/Makefile plugin/Makefile po/Makefile.in share/Makefile share/bcih/Makefile tests/Makefile apidemo/Makefile redhat/gretl.spec utils/emacs/Makefile utils/dbzip/Makefile doc/gretl.sty doc/gretl-lite.sty"
25011+
ac_config_files="$ac_config_files Makefile gretl_sh gretl.pc gui/Makefile gui/debug xdg/gretl.desktop xdg/gretl_edit.desktop xdg/Makefile cli/Makefile cli/debug lib/Makefile plugin/Makefile po/Makefile.in share/Makefile share/bcih/Makefile tests/Makefile unittests/Makefile apidemo/Makefile redhat/gretl.spec utils/emacs/Makefile utils/dbzip/Makefile doc/gretl.sty doc/gretl-lite.sty"
2501225012

2501325013

2501425014
if test "${darwin_build}" = "yes" ; then
@@ -26282,6 +26282,7 @@ do
2628226282
"share/Makefile") CONFIG_FILES="$CONFIG_FILES share/Makefile" ;;
2628326283
"share/bcih/Makefile") CONFIG_FILES="$CONFIG_FILES share/bcih/Makefile" ;;
2628426284
"tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
26285+
"unittests/Makefile") CONFIG_FILES="$CONFIG_FILES unittests/Makefile" ;;
2628526286
"apidemo/Makefile") CONFIG_FILES="$CONFIG_FILES apidemo/Makefile" ;;
2628626287
"redhat/gretl.spec") CONFIG_FILES="$CONFIG_FILES redhat/gretl.spec" ;;
2628726288
"utils/emacs/Makefile") CONFIG_FILES="$CONFIG_FILES utils/emacs/Makefile" ;;

configure.ac

+1
Original file line numberDiff line numberDiff line change
@@ -1029,6 +1029,7 @@ po/Makefile.in
10291029
share/Makefile
10301030
share/bcih/Makefile
10311031
tests/Makefile
1032+
unittests/Makefile
10321033
apidemo/Makefile
10331034
redhat/gretl.spec
10341035
utils/emacs/Makefile

unittests/Makefile.in

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
topsrc = @top_srcdir@
2+
testsrc = $(topsrc)/unittests
3+
4+
check:
5+
$(testsrc)/run_scripts_quiet.sh $(testsrc)

0 commit comments

Comments
 (0)