2021-11-01 11:43:47 +00:00
|
|
|
# Load the module to make sure it is up-to-date before we start running the
|
|
|
|
# tests. Failed that, we may try to update it from multiple tests in parallel.
|
|
|
|
# Also, our tests use this project as their amalgamation in order to get the
|
|
|
|
# module import location (as well as the C module configuration).
|
|
|
|
#
|
2022-06-29 08:40:06 +00:00
|
|
|
if ($build.mode != 'skeleton')
|
|
|
|
using autoconf
|
2021-11-01 11:43:47 +00:00
|
|
|
|
|
|
|
using c
|
|
|
|
|
2022-01-20 08:58:44 +00:00
|
|
|
# Every exe{} in this subproject is by default a test.
|
2021-11-01 11:43:47 +00:00
|
|
|
#
|
2022-01-20 08:58:44 +00:00
|
|
|
exe{*}: test = true
|
|
|
|
|
|
|
|
# Specify the test target for cross-testing.
|
|
|
|
#
|
|
|
|
test.target = $c.target
|