diff options
author | Björn-Egil Dahlberg <[email protected]> | 2010-06-09 13:35:44 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2010-06-09 14:26:05 +0200 |
commit | b630e2762b06b14f8c0d40c5d0075156cace001d (patch) | |
tree | da9368760355b69ff4ca74cb1cb3d91ecf6a3906 /lib/tools/test | |
parent | 3f2c888e08636c1f090e87fd009ff2416b8a978b (diff) | |
download | otp-b630e2762b06b14f8c0d40c5d0075156cace001d.tar.gz otp-b630e2762b06b14f8c0d40c5d0075156cace001d.tar.bz2 otp-b630e2762b06b14f8c0d40c5d0075156cace001d.zip |
Fix fprof_SUITE to use new eprof API
Diffstat (limited to 'lib/tools/test')
-rw-r--r-- | lib/tools/test/fprof_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tools/test/fprof_SUITE.erl b/lib/tools/test/fprof_SUITE.erl index e437007e76..1cd9ac7824 100644 --- a/lib/tools/test/fprof_SUITE.erl +++ b/lib/tools/test/fprof_SUITE.erl @@ -356,7 +356,7 @@ imm_tail_seq(Config) when is_list(Config) -> ?line profiling_stopped = eprof:stop_profiling(), ?line R2 = R0, %% - ?line eprof:analyse(), + ?line eprof:analyze(), ?line stopped = eprof:stop(), %% ?line {ok, Tracer} = fprof:profile(start), @@ -471,7 +471,7 @@ imm_compile(Config) when is_list(Config) -> ?line TS3 = erlang:now(), ?line profiling_stopped = eprof:stop_profiling(), %% - ?line eprof:analyse(), + ?line eprof:analyze(), ?line stopped = eprof:stop(), %% ?line {ok, Tracer} = fprof:profile(start), |