diff options
author | Hans Bolinder <[email protected]> | 2018-06-08 14:09:01 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2018-06-08 14:09:01 +0200 |
commit | 6bd15f9791e0c781f0a7b107315af46e8339558e (patch) | |
tree | f0753b941488a026a5a4f0d0a4cf5fa1fa0481f4 /lib/common_test | |
parent | 380af78843891b0994f625d392fad674c1bc4fef (diff) | |
download | otp-6bd15f9791e0c781f0a7b107315af46e8339558e.tar.gz otp-6bd15f9791e0c781f0a7b107315af46e8339558e.tar.bz2 otp-6bd15f9791e0c781f0a7b107315af46e8339558e.zip |
common_test: Use ~0p
Diffstat (limited to 'lib/common_test')
-rw-r--r-- | lib/common_test/test_server/ts_run.erl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/common_test/test_server/ts_run.erl b/lib/common_test/test_server/ts_run.erl index 5dbbaca916..7e12b9652c 100644 --- a/lib/common_test/test_server/ts_run.erl +++ b/lib/common_test/test_server/ts_run.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1997-2016. All Rights Reserved. +%% Copyright Ericsson AB 1997-2018. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. @@ -411,9 +411,9 @@ make_common_test_args(Args0, Options0, _Vars) -> end, ConfigFiles = [{config,[filename:join(ConfigPath,File) || File <- get_config_files()]}], - io_lib:format("~100000p",[[{abort_if_missing_suites,true} | - Args0++Trace++Cover++Logdir++ - ConfigFiles++Options++TimeTrap]]). + io_lib:format("~0p",[[{abort_if_missing_suites,true} | + Args0++Trace++Cover++Logdir++ + ConfigFiles++Options++TimeTrap]]). to_list(X) when is_atom(X) -> atom_to_list(X); |