diff options
author | Fredrik Gustafsson <[email protected]> | 2013-01-18 10:37:04 +0100 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2013-01-18 10:37:04 +0100 |
commit | 750ecdea08fa5fa7e32b7f3019eed96c1699427e (patch) | |
tree | f2aa96ecfc71ba2af67f1636db7d77a3692f6b08 /lib/tools/test | |
parent | 2cfa0466c3b3c7bd5e3621aff0f3e2ca30addb68 (diff) | |
parent | ed8afbbde6e8a90f415f8bd2d8d0a19d759fb7e3 (diff) | |
download | otp-750ecdea08fa5fa7e32b7f3019eed96c1699427e.tar.gz otp-750ecdea08fa5fa7e32b7f3019eed96c1699427e.tar.bz2 otp-750ecdea08fa5fa7e32b7f3019eed96c1699427e.zip |
Merge branch 'nox/rm-reverse-eta-conversion/OTP-10682'
* nox/rm-reverse-eta-conversion/OTP-10682:
Don't use fun references in cprof_SUITE
Make trace_local_SUITE work without the reverse eta conversion
Remove the reverse eta-conversion from v3_kernel
Diffstat (limited to 'lib/tools/test')
-rw-r--r-- | lib/tools/test/cprof_SUITE.erl | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/tools/test/cprof_SUITE.erl b/lib/tools/test/cprof_SUITE.erl index ce5cf66a14..93caee0c8f 100644 --- a/lib/tools/test/cprof_SUITE.erl +++ b/lib/tools/test/cprof_SUITE.erl @@ -230,10 +230,10 @@ on_load_test(Config) -> %% ?line N4 = cprof:restart(), ?line {ok,Module} = c:c(File, [{outdir,Priv}]), - ?line L = Module:seq(1, M, fun succ/1), - ?line Lr = Module:seq_r(1, M, fun succ/1), - ?line L = seq(1, M, fun succ/1), - ?line Lr = seq_r(1, M, fun succ/1), + ?line L = Module:seq(1, M, fun (I) -> succ(I) end), + ?line Lr = Module:seq_r(1, M, fun (I) -> succ(I) end), + ?line L = seq(1, M, fun (I) -> succ(I) end), + ?line Lr = seq_r(1, M, fun (I) -> succ(I) end), ?line N2 = cprof:pause(), ?line {Module,0,[]} = cprof:analyse(Module), ?line M_1 = M - 1, @@ -265,10 +265,10 @@ modules_test(Config) -> ?line M2__1 = M2 + 1, ?line erlang:yield(), ?line N = cprof:start(), - ?line L = Module:seq(1, M, fun succ/1), - ?line Lr = Module:seq_r(1, M, fun succ/1), - ?line L = seq(1, M, fun succ/1), - ?line Lr = seq_r(1, M, fun succ/1), + ?line L = Module:seq(1, M, fun (I) -> succ(I) end), + ?line Lr = Module:seq_r(1, M, fun (I) -> succ(I) end), + ?line L = seq(1, M, fun (I) -> succ(I) end), + ?line Lr = seq_r(1, M, fun (I) -> succ(I) end), ?line N = cprof:pause(), ?line Lr = lists:reverse(L), ?line M_1 = M - 1, |