aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test
diff options
context:
space:
mode:
authorHans Bolinder <[email protected]>2018-06-11 12:38:41 +0200
committerHans Bolinder <[email protected]>2018-06-11 12:38:41 +0200
commitc2d0170c32402a7ddb6657be72f5bf5786fa298b (patch)
treea35b4e25c729b4c19accb1b21594dbb65f48f83b /lib/common_test
parentcf2ad431487cb533aac2854843aa61b8e1e5af62 (diff)
parent7a5ae72a5f46059d8c862a4e5964b4799d1fda4b (diff)
downloadotp-c2d0170c32402a7ddb6657be72f5bf5786fa298b.tar.gz
otp-c2d0170c32402a7ddb6657be72f5bf5786fa298b.tar.bz2
otp-c2d0170c32402a7ddb6657be72f5bf5786fa298b.zip
Merge branch 'hasse/stdlib/pP_with_no_line_breaks/OTP-15103/ERL-607'
* hasse/stdlib/pP_with_no_line_breaks/OTP-15103/ERL-607: kernel: Use ~0p debugger: Use ~0p common_test: Use ~0p stdlib: Make pP insert no line breaks with field width zero
Diffstat (limited to 'lib/common_test')
-rw-r--r--lib/common_test/test_server/ts_run.erl8
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);