Browse Source

ft: 代码修改

master
SisMaker 3 years ago
parent
commit
0f5b8be1f5
2 changed files with 6 additions and 6 deletions
  1. +1
    -1
      src/measure/timeCompare.erl
  2. +5
    -5
      src/testCase/utTestTrace.erl

src/measure/test.erl → src/measure/timeCompare.erl View File

@ -1,4 +1,4 @@
-module(test).
-module(timeCompare).
-export([ -export([
time_compare/2, time_compare/2,

+ 5
- 5
src/testCase/utTestTrace.erl View File

@ -84,7 +84,7 @@ do_t3(N) ->
ignore ignore
end, end,
try test:tt9(2) of
try recon_test:tt9(2) of
Ret -> Ret ->
desult3(N - 1, Ret) desult3(N - 1, Ret)
catch catch
@ -104,7 +104,7 @@ do_t4(N) ->
%io:format("IMY************************* ~p ~n", [N]), %io:format("IMY************************* ~p ~n", [N]),
ignore ignore
end, end,
Ret1 = try test:tt9(2) of
Ret1 = try recon_test:tt9(2) of
Ret -> Ret ->
Ret Ret
catch catch
@ -126,7 +126,7 @@ do_t5(N) ->
%io:format("IMY************************* ~p ~n", [N]), %io:format("IMY************************* ~p ~n", [N]),
ignore ignore
end, end,
try test:tt9(2) of
try recon_test:tt9(2) of
Ret -> Ret ->
do_t5(N - 1) do_t5(N - 1)
catch catch
@ -147,7 +147,7 @@ do_t6(N) ->
%io:format("IMY************************* ~p ~n", [N]), %io:format("IMY************************* ~p ~n", [N]),
ignore ignore
end, end,
try test:tt9(2) of
try recon_test:tt9(2) of
Ret -> Ret ->
do_t6(N - 1) do_t6(N - 1)
catch catch
@ -161,7 +161,7 @@ do_t7(0) ->
io:format("IMy********************11111"); io:format("IMy********************11111");
do_t7(N) -> do_t7(N) ->
io:format("IMy********************22222"), io:format("IMy********************22222"),
try test:tt9(2) of
try recon_test:tt9(2) of
_Ret -> _Ret ->
io:format("IMy********************3333"), io:format("IMy********************3333"),
do_t7(N - 1) do_t7(N - 1)

Loading…
Cancel
Save