summaryrefslogtreecommitdiff
path: root/tests/cdash/cfg_gnu.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cdash/cfg_gnu.py')
-rw-r--r--tests/cdash/cfg_gnu.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/cdash/cfg_gnu.py b/tests/cdash/cfg_gnu.py
index 4a1362b6..8411b654 100644
--- a/tests/cdash/cfg_gnu.py
+++ b/tests/cdash/cfg_gnu.py
@@ -59,10 +59,13 @@ Arguments:
cfg_site.GROUP, \
cfg_site.OPTIONS)
+ config_site = "#define PJ_TODO(x)\n" + cfg_site.CONFIG_SITE
+ user_mak = "export CFLAGS+=-Wall\n" + cfg_site.USER_MAK
+
builders = [
builder.GNUTestBuilder(test_cfg, build_config_name="default",
- user_mak="export CFLAGS+=-Wall\n",
- config_site="#define PJ_TODO(x)\n",
+ user_mak=user_mak,
+ config_site=config_site,
exclude=cfg_site.EXCLUDE,
not_exclude=cfg_site.NOT_EXCLUDE)
]