diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-02-01T11·20+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-02-01T11·20+0100 |
commit | ec1738589a3aa1dd59e476de09ae2721d51b3e6e (patch) | |
tree | 12ce1195b2eee732487a4e89519c4cffb086f8eb /tests.mk | |
parent | 35107038f7c726f5ef8d7ab014ad45c73970e65d (diff) |
Make variable names more regular
Diffstat (limited to 'tests.mk')
-rw-r--r-- | tests.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests.mk b/tests.mk index 8a3bff66e890..339abd5803f1 100644 --- a/tests.mk +++ b/tests.mk @@ -6,15 +6,15 @@ define run-install-test = # Run the test in its own directory to mimick Automake behaviour. $1.run: $1 $(_PREV_TEST) - _installcheck_list += $1 + _installcheck-list += $1 endef installcheck: install - @total=0; failed=0; for i in $(_installcheck_list); do \ + @total=0; failed=0; for i in $(_installcheck-list); do \ total=$$((total + 1)); \ echo "running test $$i"; \ - if (cd $$(dirname $$i) && $(TESTS_ENVIRONMENT) $$(basename $$i)); then \ + if (cd $$(dirname $$i) && $(tests-environment) $$(basename $$i)); then \ echo "PASS: $$i"; \ else \ echo "FAIL: $$i"; \ |