2021-11-01 11:43:47 +00:00
|
|
|
# Note: --silent rather than --quiet to suppress module update diagnostics.
|
|
|
|
#
|
|
|
|
test.options += --no-default-options --serial-stop --silent --buildfile -
|
|
|
|
|
|
|
|
# We disable bdep auto-synchronization since we will potentially be updating
|
|
|
|
# the module from multiple parallel tests. Note that we've made sure it is
|
|
|
|
# up-to-date by pre-loading it in the tests project (see root.build for
|
|
|
|
# details).
|
|
|
|
#
|
|
|
|
+export BDEP_SYNC=0
|
|
|
|
|
|
|
|
# Note that we are using the libbuild2-autoconf-tests project as our
|
|
|
|
# amalgamation in order to get the module import location and config.c.
|
|
|
|
#
|
|
|
|
+cat <<EOI >=bootstrap.build
|
|
|
|
project = basics
|
|
|
|
#amalgamation =
|
|
|
|
subprojects =
|
|
|
|
|
|
|
|
version = 1.2.3
|
|
|
|
EOI
|
|
|
|
|
|
|
|
+cat <<EOI >=root.build
|
|
|
|
using c
|
|
|
|
using autoconf
|
|
|
|
EOI
|
|
|
|
|
|
|
|
: basics-autoconf
|
|
|
|
:
|
|
|
|
mkdir build;
|
|
|
|
ln -s ../../bootstrap.build ../../root.build build/;
|
|
|
|
cat <<EOI >=config.h.in;
|
|
|
|
#define VERSION "@version@"
|
|
|
|
|
|
|
|
#undef TRUE
|
|
|
|
#undef FALSE
|
|
|
|
#undef ONE
|
|
|
|
#undef ZERO
|
|
|
|
#undef VALUE
|
|
|
|
|
|
|
|
# undef TRUE
|
|
|
|
|
|
|
|
#undef CUSTOM_LINE
|
|
|
|
#undef CUSTOM_BLOCK
|
2021-11-03 08:42:03 +00:00
|
|
|
|
2021-11-04 05:38:20 +00:00
|
|
|
#undef zzz_TEST_DUMMY1_H
|
|
|
|
#undef zzz_TEST_DUMMY2_H
|
2021-11-01 11:43:47 +00:00
|
|
|
EOI
|
|
|
|
$* <<EOI &config.h &config.h.d;
|
|
|
|
./: h{config}: in{config}
|
|
|
|
{
|
|
|
|
TRUE = true
|
|
|
|
FALSE = [bool] false
|
|
|
|
ONE = 1
|
|
|
|
ZERO = [uint64] 000
|
|
|
|
VALUE = [uint64] 0123
|
|
|
|
|
|
|
|
CUSTOM_LINE = '#define CUSTOM 123'
|
|
|
|
CUSTOM_BLOCK = \
|
|
|
|
'
|
|
|
|
/* Make sure we do not redefine CUSTOM. */
|
|
|
|
#ifndef CUSTOM
|
|
|
|
# define CUSTOM 123
|
|
|
|
#endif
|
|
|
|
'
|
2021-11-03 08:42:03 +00:00
|
|
|
|
2021-11-04 05:38:20 +00:00
|
|
|
zzz_TEST_DUMMY2_H = '#define zzz_TEST_DUMMY2_H 2'
|
2021-11-01 11:43:47 +00:00
|
|
|
}
|
|
|
|
EOI
|
|
|
|
cat config.h >>EOO
|
|
|
|
#define VERSION "1.2.3"
|
|
|
|
|
|
|
|
#define TRUE 1
|
|
|
|
#undef FALSE
|
|
|
|
#define ONE 1
|
|
|
|
#undef ZERO
|
|
|
|
#define VALUE 123
|
|
|
|
|
|
|
|
#define TRUE 1
|
|
|
|
|
|
|
|
#define CUSTOM 123
|
|
|
|
/* Make sure we do not redefine CUSTOM. */
|
|
|
|
#ifndef CUSTOM
|
|
|
|
# define CUSTOM 123
|
|
|
|
#endif
|
2021-11-03 08:42:03 +00:00
|
|
|
|
2021-11-04 05:38:20 +00:00
|
|
|
#define zzz_TEST_DUMMY1_H 1
|
|
|
|
#define zzz_TEST_DUMMY2_H 2
|
2021-11-01 11:43:47 +00:00
|
|
|
EOO
|
|
|
|
|
|
|
|
: basics-cmake
|
|
|
|
:
|
|
|
|
mkdir build;
|
|
|
|
ln -s ../../bootstrap.build ../../root.build build/;
|
2021-11-05 06:36:34 +00:00
|
|
|
cat <<EOI >=config.h.cmake;
|
2021-11-01 11:43:47 +00:00
|
|
|
#define VERSION "@version@"
|
|
|
|
|
|
|
|
#cmakedefine TRUE
|
|
|
|
#cmakedefine FALSE
|
|
|
|
#cmakedefine ONE
|
|
|
|
#cmakedefine ZERO
|
|
|
|
#cmakedefine VALUE
|
|
|
|
|
|
|
|
# cmakedefine TRUE
|
|
|
|
|
|
|
|
#cmakedefine CUSTOM_LINE
|
|
|
|
#cmakedefine CUSTOM_BLOCK
|
|
|
|
#cmakedefine CUSTOM_BLOCK @version@
|
|
|
|
|
|
|
|
#cmakedefine TRUE true
|
|
|
|
#cmakedefine FALSE false
|
|
|
|
#cmakedefine VALUE @VALUE@ /* @version@ */
|
2021-11-03 08:42:03 +00:00
|
|
|
|
2021-11-04 05:38:20 +00:00
|
|
|
#cmakedefine zzz_TEST_DUMMY1_H @zzz_TEST_DUMMY1_H@
|
|
|
|
#cmakedefine zzz_TEST_DUMMY2_H
|
2021-11-01 11:43:47 +00:00
|
|
|
EOI
|
|
|
|
$* <<EOI &config.h &config.h.d;
|
2021-11-05 06:36:34 +00:00
|
|
|
./: h{config}: in{config.h.cmake}
|
2021-11-01 11:43:47 +00:00
|
|
|
{
|
|
|
|
TRUE = true
|
|
|
|
FALSE = [bool] false
|
|
|
|
ONE = 1
|
|
|
|
ZERO = [uint64] 000
|
|
|
|
VALUE = [uint64] 0123
|
|
|
|
|
|
|
|
CUSTOM_LINE = '#define CUSTOM 123'
|
|
|
|
CUSTOM_BLOCK = \
|
|
|
|
'
|
|
|
|
/* Make sure we do not redefine CUSTOM. */
|
|
|
|
#ifndef CUSTOM
|
|
|
|
# define CUSTOM 123
|
|
|
|
#endif
|
|
|
|
'
|
2021-11-03 08:42:03 +00:00
|
|
|
|
2021-11-04 05:38:20 +00:00
|
|
|
zzz_TEST_DUMMY2_H = '#define zzz_TEST_DUMMY2_H 2'
|
2021-11-01 11:43:47 +00:00
|
|
|
}
|
|
|
|
EOI
|
|
|
|
cat config.h >>EOO
|
|
|
|
#define VERSION "1.2.3"
|
|
|
|
|
|
|
|
#define TRUE 1
|
|
|
|
#undef FALSE
|
|
|
|
#define ONE 1
|
|
|
|
#undef ZERO
|
|
|
|
#define VALUE 123
|
|
|
|
|
|
|
|
#define TRUE 1
|
|
|
|
|
|
|
|
#define CUSTOM 123
|
|
|
|
/* Make sure we do not redefine CUSTOM. */
|
|
|
|
#ifndef CUSTOM
|
|
|
|
# define CUSTOM 123
|
|
|
|
#endif
|
|
|
|
/* Make sure we do not redefine CUSTOM. */
|
|
|
|
#ifndef CUSTOM
|
|
|
|
# define CUSTOM 123
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define TRUE true
|
|
|
|
#undef FALSE
|
|
|
|
#define VALUE 123 /* 1.2.3 */
|
2021-11-03 08:42:03 +00:00
|
|
|
|
2021-11-04 05:38:20 +00:00
|
|
|
#define zzz_TEST_DUMMY1_H 1
|
|
|
|
#define zzz_TEST_DUMMY2_H 2
|
2021-11-01 11:43:47 +00:00
|
|
|
EOO
|
|
|
|
|
|
|
|
: basics-meson
|
|
|
|
:
|
|
|
|
mkdir build;
|
|
|
|
ln -s ../../bootstrap.build ../../root.build build/;
|
|
|
|
cat <<EOI >=config.h.in;
|
|
|
|
#define VERSION "@version@"
|
|
|
|
|
|
|
|
#mesondefine TRUE
|
|
|
|
#mesondefine FALSE
|
|
|
|
#mesondefine ONE
|
|
|
|
#mesondefine ZERO
|
|
|
|
#mesondefine VALUE
|
|
|
|
|
|
|
|
# mesondefine TRUE
|
|
|
|
|
|
|
|
#mesondefine CUSTOM_LINE
|
|
|
|
#mesondefine CUSTOM_BLOCK
|
2021-11-03 08:42:03 +00:00
|
|
|
|
2021-11-04 05:38:20 +00:00
|
|
|
#mesondefine zzz_TEST_DUMMY1_H
|
|
|
|
#mesondefine zzz_TEST_DUMMY2_H
|
2021-11-01 11:43:47 +00:00
|
|
|
EOI
|
|
|
|
$* <<EOI &config.h &config.h.d;
|
|
|
|
./: h{config}: in{config}
|
|
|
|
{
|
|
|
|
autoconf.flavor = meson
|
|
|
|
|
|
|
|
TRUE = true
|
|
|
|
FALSE = [bool] false
|
|
|
|
ONE = 1
|
|
|
|
ZERO = [uint64] 000
|
|
|
|
VALUE = [uint64] 0123
|
|
|
|
|
|
|
|
CUSTOM_LINE = '#define CUSTOM 123'
|
|
|
|
CUSTOM_BLOCK = \
|
|
|
|
'
|
|
|
|
/* Make sure we do not redefine CUSTOM. */
|
|
|
|
#ifndef CUSTOM
|
|
|
|
# define CUSTOM 123
|
|
|
|
#endif
|
|
|
|
'
|
2021-11-03 08:42:03 +00:00
|
|
|
|
2021-11-04 05:38:20 +00:00
|
|
|
zzz_TEST_DUMMY2_H = '#define zzz_TEST_DUMMY2_H 2'
|
2021-11-01 11:43:47 +00:00
|
|
|
}
|
|
|
|
EOI
|
|
|
|
cat config.h >>EOO
|
|
|
|
#define VERSION "1.2.3"
|
|
|
|
|
|
|
|
#define TRUE 1
|
|
|
|
#undef FALSE
|
|
|
|
#define ONE 1
|
|
|
|
#undef ZERO
|
|
|
|
#define VALUE 123
|
|
|
|
|
|
|
|
#define TRUE 1
|
|
|
|
|
|
|
|
#define CUSTOM 123
|
|
|
|
/* Make sure we do not redefine CUSTOM. */
|
|
|
|
#ifndef CUSTOM
|
|
|
|
# define CUSTOM 123
|
|
|
|
#endif
|
2021-11-03 08:42:03 +00:00
|
|
|
|
2021-11-04 05:38:20 +00:00
|
|
|
#define zzz_TEST_DUMMY1_H 1
|
|
|
|
#define zzz_TEST_DUMMY2_H 2
|
2021-11-01 11:43:47 +00:00
|
|
|
EOO
|
2021-11-24 11:30:54 +00:00
|
|
|
|
|
|
|
: prefix
|
|
|
|
:
|
|
|
|
mkdir build;
|
|
|
|
ln -s ../../bootstrap.build ../../root.build build/;
|
|
|
|
cat <<EOI >=config.h.in;
|
|
|
|
#undef PREFIX_zzz_TEST_DUMMY1_H
|
|
|
|
#undef PREFIX_zzz_TEST_DUMMY2_H
|
|
|
|
EOI
|
|
|
|
$* <<EOI &config.h &config.h.d;
|
|
|
|
./: h{config}: in{config}
|
|
|
|
{
|
|
|
|
autoconf.prefix = PREFIX_
|
|
|
|
|
|
|
|
PREFIX_zzz_TEST_DUMMY2_H = '#define PREFIX_zzz_TEST_DUMMY2_H 2'
|
|
|
|
}
|
|
|
|
EOI
|
|
|
|
cat config.h >>EOO
|
|
|
|
#define PREFIX_zzz_TEST_DUMMY1_H 1
|
|
|
|
#define PREFIX_zzz_TEST_DUMMY2_H 2
|
|
|
|
EOO
|