Browse Source

新增测试

master
SisMaker 4 years ago
parent
commit
c7a85fa93d
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/testCase/utTpfm.erl

+ 3
- 3
src/testCase/utTpfm.erl View File

@ -552,10 +552,10 @@ testHex(N, Mod, Fun, Args, _) ->
tTuple(0, _) -> tTuple(0, _) ->
ok; ok;
tTuple(N, {tag, OldN}) -> tTuple(N, {tag, OldN}) ->
tTuple(N -1, {tag, N}).
tTuple(N -1, {tag, OldN}).
tPd(0, _) -> tPd(0, _) ->
ok; ok;
tPd(N, _) -> tPd(N, _) ->
erlang:put(pdVpSize, N),
tPd(N -1, erlang:get(pdVpSize)).
erlang:put(pdVpSize, 0),
tPd(N -1, erlang:get(pdVpSize)).

Loading…
Cancel
Save