aboutsummaryrefslogtreecommitdiffstats
path: root/lib/diameter/test
diff options
context:
space:
mode:
authorAnders Svensson <[email protected]>2013-03-06 22:26:10 +0100
committerAnders Svensson <[email protected]>2013-03-24 15:50:58 +0100
commit2458d263c46c90ac55a6eaf5cbca18b02c8a65f2 (patch)
tree6dc426ccf9c9a7368c9d8bf9d119a564bddfa31a /lib/diameter/test
parentda0355042254d98a06acddbf7361bd0f0f4b4f7f (diff)
downloadotp-2458d263c46c90ac55a6eaf5cbca18b02c8a65f2.tar.gz
otp-2458d263c46c90ac55a6eaf5cbca18b02c8a65f2.tar.bz2
otp-2458d263c46c90ac55a6eaf5cbca18b02c8a65f2.zip
Minor tweaks and fixes
Fix a broken include in example code, remove an inappropriate ct:pal/2 outside of a testcase, echo more info from test/Makefile.
Diffstat (limited to 'lib/diameter/test')
-rw-r--r--lib/diameter/test/Makefile5
-rw-r--r--lib/diameter/test/diameter_ct.erl2
2 files changed, 6 insertions, 1 deletions
diff --git a/lib/diameter/test/Makefile b/lib/diameter/test/Makefile
index 061f0bcbef..9719c67b32 100644
--- a/lib/diameter/test/Makefile
+++ b/lib/diameter/test/Makefile
@@ -93,6 +93,11 @@ info:
@$(call list,HRL_FILES)
@echo
@$(call list,SUITES)
+ @echo
+ @echo erl = $(shell which erl)
+ @erl -noinput \
+ -eval 'io:format("diameter = ~s~n", [code:lib_dir(diameter)])' \
+ -s init stop
@echo ========================================
help:
diff --git a/lib/diameter/test/diameter_ct.erl b/lib/diameter/test/diameter_ct.erl
index 1697287a22..ed2f884681 100644
--- a/lib/diameter/test/diameter_ct.erl
+++ b/lib/diameter/test/diameter_ct.erl
@@ -53,7 +53,7 @@ info(L0, L1) ->
L0,
L1),
Diff = [T, C, {memory, M}],
- ct:pal("INFO: ~p~n", [Diff]).
+ io:format("INFO: ~p~n", [Diff]).
diff(time, T0, T1) ->
timer:now_diff(T1, T0);