diff options
author | Peter Andersson <[email protected]> | 2012-03-15 00:01:13 +0100 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2012-03-19 14:06:57 +0100 |
commit | ea23dbfba71bf4bc17fb9c61b19dc3973ccc30f1 (patch) | |
tree | 335dce50e9392105a291a2f66827656288e4951e /lib/common_test/src/ct_run.erl | |
parent | 37827c8f57036cec67c4d9460c02c468aa615155 (diff) | |
download | otp-ea23dbfba71bf4bc17fb9c61b19dc3973ccc30f1.tar.gz otp-ea23dbfba71bf4bc17fb9c61b19dc3973ccc30f1.tar.bz2 otp-ea23dbfba71bf4bc17fb9c61b19dc3973ccc30f1.zip |
Run hooks for non-existing config functions
Diffstat (limited to 'lib/common_test/src/ct_run.erl')
-rw-r--r-- | lib/common_test/src/ct_run.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/common_test/src/ct_run.erl b/lib/common_test/src/ct_run.erl index 666eb3c988..d142bdaa81 100644 --- a/lib/common_test/src/ct_run.erl +++ b/lib/common_test/src/ct_run.erl @@ -1413,7 +1413,8 @@ do_run(Tests, Skip, Opts, Args) when is_record(Opts, opts) -> %% which framework it runs under. case os:getenv("TEST_SERVER_FRAMEWORK") of false -> - os:putenv("TEST_SERVER_FRAMEWORK", "ct_framework"); + os:putenv("TEST_SERVER_FRAMEWORK", "ct_framework"), + os:putenv("TEST_SERVER_FRAMEWORK_NAME", "common_test"); "ct_framework" -> ok; Other -> |