diff --git a/src/testCase/ListPdTs/utListPdTs.erl b/src/testCase/ListPdTs/utListPdTs.erl index 8ceea05..5aee719 100644 --- a/src/testCase/ListPdTs/utListPdTs.erl +++ b/src/testCase/ListPdTs/utListPdTs.erl @@ -46,15 +46,15 @@ runCnt(Cnt, Num, Ds) -> runExe(Num, Ds) -> Pid = erlang:spawn_link(Ds, start, [Num, self()]), receive - {over, Pid, Insert, Read, Update, For, Delete} -> + {over, Pid, Insert, Read, Delete} -> storeStatistics(Ds, Num, Insert, Read, Delete), {_, DsName} = lists:split(2, atom_to_list(Ds)), - printLog("~-10.s ~8.s ~12.s ~12.s ~10.s ~12.s ~10.s ~14.s ~10.s ~12.s ~12.s ~12.s ~n", - [DsName, integer_to_list(Num), timeToStr(Insert), calcPer(Insert, Num), timeToStr(Read), calcPer(Read, Num), timeToStr(Update), calcPer(Update, Num), timeToStr(For), calcPer(For, Num), timeToStr(Delete), calcPer(Delete, Num)]); + printLog("~-10.s ~8.s ~12.s ~12.s ~10.s ~12.s ~12.s ~12.s ~n", + [DsName, integer_to_list(Num), timeToStr(Insert), calcPer(Insert, Num), timeToStr(Read), calcPer(Read, Num), timeToStr(Delete), calcPer(Delete, Num)]); {'EXIT', Pid, normal} -> ok; _ShutDown -> - io:format("Ds test shutDown ~p ~p ~p ~n", [Ds, Num, _ShutDown]) + io:format("Ts test shutDown ~p ~p ~p ~n", [Ds, Num, _ShutDown]) end. runAvg([Ds | T], VNumList) -> diff --git a/src/testCase/ListPdTs/utListsTs.erl b/src/testCase/ListPdTs/utListTs.erl similarity index 97% rename from src/testCase/ListPdTs/utListsTs.erl rename to src/testCase/ListPdTs/utListTs.erl index 8b5877f..2ca9d3b 100644 --- a/src/testCase/ListPdTs/utListsTs.erl +++ b/src/testCase/ListPdTs/utListTs.erl @@ -1,4 +1,4 @@ --module(utListsTs). +-module(utListTs). -compile([nowarn_unused_function, nowarn_unused_vars, nowarn_export_all]). -export([start/2]).