ruby-prof 0.8.1-x86-mingw32 → 0.11.0.rc1-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (119) hide show
  1. data/CHANGES +89 -13
  2. data/LICENSE +4 -3
  3. data/{README → README.rdoc} +155 -162
  4. data/Rakefile +50 -123
  5. data/bin/ruby-prof +86 -47
  6. data/examples/empty.png +0 -0
  7. data/examples/graph.dot +106 -0
  8. data/examples/graph.png +0 -0
  9. data/examples/minus.png +0 -0
  10. data/examples/multi.flat.txt +23 -0
  11. data/examples/multi.graph.html +906 -0
  12. data/examples/multi.grind.dat +194 -0
  13. data/examples/multi.stack.html +573 -0
  14. data/examples/plus.png +0 -0
  15. data/examples/stack.html +573 -0
  16. data/ext/ruby_prof/extconf.rb +53 -0
  17. data/ext/ruby_prof/rp_call_info.c +369 -0
  18. data/ext/ruby_prof/rp_call_info.h +46 -0
  19. data/ext/ruby_prof/rp_measure.c +48 -0
  20. data/ext/ruby_prof/rp_measure.h +45 -0
  21. data/ext/ruby_prof/rp_measure_allocations.c +86 -0
  22. data/ext/ruby_prof/rp_measure_cpu_time.c +112 -0
  23. data/ext/ruby_prof/rp_measure_gc_runs.c +87 -0
  24. data/ext/ruby_prof/rp_measure_gc_time.c +73 -0
  25. data/ext/ruby_prof/rp_measure_memory.c +81 -0
  26. data/ext/ruby_prof/rp_measure_process_time.c +71 -0
  27. data/ext/ruby_prof/rp_measure_wall_time.c +42 -0
  28. data/ext/ruby_prof/rp_method.c +363 -0
  29. data/ext/ruby_prof/rp_method.h +55 -0
  30. data/ext/ruby_prof/rp_stack.c +61 -0
  31. data/ext/ruby_prof/rp_stack.h +40 -0
  32. data/ext/ruby_prof/rp_thread.c +113 -0
  33. data/ext/ruby_prof/rp_thread.h +20 -0
  34. data/ext/ruby_prof/ruby_prof.c +332 -1377
  35. data/ext/ruby_prof/ruby_prof.h +54 -188
  36. data/ext/ruby_prof/version.h +6 -3
  37. data/lib/1.8/ruby_prof.so +0 -0
  38. data/lib/1.9/ruby_prof.exp +0 -0
  39. data/lib/1.9/ruby_prof.ilk +0 -0
  40. data/lib/1.9/ruby_prof.lib +0 -0
  41. data/lib/1.9/ruby_prof.pdb +0 -0
  42. data/lib/1.9/ruby_prof.so +0 -0
  43. data/lib/ruby-prof.rb +32 -18
  44. data/lib/ruby-prof/abstract_printer.rb +15 -5
  45. data/lib/ruby-prof/aggregate_call_info.rb +11 -3
  46. data/lib/ruby-prof/call_info.rb +68 -1
  47. data/lib/ruby-prof/call_stack_printer.rb +775 -0
  48. data/lib/ruby-prof/call_tree_printer.rb +17 -9
  49. data/lib/ruby-prof/compatibility.rb +134 -0
  50. data/lib/ruby-prof/dot_printer.rb +152 -0
  51. data/lib/ruby-prof/empty.png +0 -0
  52. data/lib/ruby-prof/flat_printer.rb +23 -24
  53. data/lib/ruby-prof/flat_printer_with_line_numbers.rb +17 -21
  54. data/lib/ruby-prof/graph_html_printer.rb +69 -39
  55. data/lib/ruby-prof/graph_printer.rb +35 -35
  56. data/lib/ruby-prof/method_info.rb +26 -4
  57. data/lib/ruby-prof/minus.png +0 -0
  58. data/lib/ruby-prof/multi_printer.rb +56 -0
  59. data/lib/ruby-prof/plus.png +0 -0
  60. data/lib/ruby-prof/profile.rb +72 -0
  61. data/lib/ruby-prof/rack.rb +31 -0
  62. data/lib/ruby-prof/symbol_to_proc.rb +3 -1
  63. data/lib/ruby-prof/task.rb +20 -19
  64. data/lib/ruby-prof/test.rb +5 -3
  65. data/lib/ruby_prof.exp +0 -0
  66. data/lib/ruby_prof.ilk +0 -0
  67. data/lib/ruby_prof.lib +0 -0
  68. data/lib/ruby_prof.pdb +0 -0
  69. data/lib/ruby_prof.so +0 -0
  70. data/lib/unprof.rb +2 -0
  71. data/test/aggregate_test.rb +29 -14
  72. data/test/basic_test.rb +3 -251
  73. data/test/bug_test.rb +6 -0
  74. data/test/duplicate_names_test.rb +4 -4
  75. data/test/dynamic_method_test.rb +61 -0
  76. data/test/enumerable_test.rb +4 -4
  77. data/test/exceptions_test.rb +6 -5
  78. data/test/exclude_threads_test.rb +47 -47
  79. data/test/exec_test.rb +5 -5
  80. data/test/line_number_test.rb +16 -16
  81. data/test/measure_allocations_test.rb +25 -0
  82. data/test/measure_cpu_time_test.rb +212 -0
  83. data/test/measure_gc_runs_test.rb +29 -0
  84. data/test/measure_gc_time_test.rb +29 -0
  85. data/test/measure_memory_test.rb +36 -0
  86. data/test/measure_process_time_test.rb +205 -0
  87. data/test/measure_wall_time_test.rb +209 -0
  88. data/test/method_elimination_test.rb +74 -0
  89. data/test/module_test.rb +12 -21
  90. data/test/multi_printer_test.rb +81 -0
  91. data/test/no_method_class_test.rb +5 -3
  92. data/test/prime.rb +7 -10
  93. data/test/prime_test.rb +3 -3
  94. data/test/printers_test.rb +180 -54
  95. data/test/recursive_test.rb +34 -72
  96. data/test/singleton_test.rb +5 -4
  97. data/test/stack_printer_test.rb +73 -0
  98. data/test/stack_test.rb +7 -7
  99. data/test/start_stop_test.rb +23 -6
  100. data/test/test_helper.rb +81 -0
  101. data/test/test_suite.rb +35 -21
  102. data/test/thread_test.rb +40 -39
  103. data/test/unique_call_path_test.rb +6 -6
  104. metadata +106 -51
  105. data/ext/ruby_prof/measure_allocations.h +0 -58
  106. data/ext/ruby_prof/measure_cpu_time.h +0 -152
  107. data/ext/ruby_prof/measure_gc_runs.h +0 -76
  108. data/ext/ruby_prof/measure_gc_time.h +0 -57
  109. data/ext/ruby_prof/measure_memory.h +0 -101
  110. data/ext/ruby_prof/measure_process_time.h +0 -52
  111. data/ext/ruby_prof/measure_wall_time.h +0 -53
  112. data/ext/ruby_prof/mingw/Rakefile +0 -23
  113. data/ext/ruby_prof/mingw/build.rake +0 -38
  114. data/rails/environment/profile.rb +0 -24
  115. data/rails/example/example_test.rb +0 -9
  116. data/rails/profile_test_helper.rb +0 -21
  117. data/test/current_failures_windows +0 -8
  118. data/test/measurement_test.rb +0 -121
  119. data/test/ruby-prof-bin +0 -20
@@ -1,21 +0,0 @@
1
- # Load profile environment
2
- env = ENV["RAILS_ENV"] = "profile"
3
- require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
4
-
5
- # Load Rails testing infrastructure
6
- require 'test_help'
7
-
8
- # Now we can load test_helper since we've already loaded the
9
- # profile RAILS environment.
10
- require File.expand_path(File.join(RAILS_ROOT, 'test', 'test_helper'))
11
-
12
- # Reset the current environment back to profile
13
- # since test_helper reset it to test
14
- ENV["RAILS_ENV"] = env
15
-
16
- # Now load ruby-prof and away we go
17
- require 'ruby-prof'
18
-
19
- # Setup output directory to Rails tmp directory
20
- RubyProf::Test::PROFILE_OPTIONS[:output_dir] =
21
- File.expand_path(File.join(RAILS_ROOT, 'tmp', 'profile'))
@@ -1,8 +0,0 @@
1
- 1.8 passes, 1.9 however...
2
-
3
- 1) Failure:
4
- test_flat_string_with_numbers(PrintersTest) [E:/dev/ruby/ruby-prof/test/printers_test.rb:68]:
5
- <2> expected but was
6
- <29>.
7
-
8
- which is expected until core backports a recent fix.
@@ -1,121 +0,0 @@
1
- #!/usr/bin/env ruby
2
- require 'test/unit'
3
- require 'ruby-prof'
4
-
5
- class MeasurementTest < Test::Unit::TestCase
6
- def setup
7
- GC.enable_stats if GC.respond_to?(:enable_stats)
8
- end
9
-
10
- def teardown
11
- GC.disable_stats if GC.respond_to?(:disable_stats)
12
- end
13
-
14
- def test_process_time_mode
15
- RubyProf::measure_mode = RubyProf::PROCESS_TIME
16
- assert_equal(RubyProf::PROCESS_TIME, RubyProf::measure_mode)
17
- end
18
-
19
- def test_process_time
20
- t = RubyProf.measure_process_time
21
- assert_kind_of(Float, t)
22
-
23
- u = RubyProf.measure_process_time
24
- assert(u >= t, [t, u].inspect)
25
- end
26
-
27
- def test_wall_time_mode
28
- RubyProf::measure_mode = RubyProf::WALL_TIME
29
- assert_equal(RubyProf::WALL_TIME, RubyProf::measure_mode)
30
- end
31
-
32
- def test_wall_time
33
- t = RubyProf.measure_wall_time
34
- assert_kind_of Float, t
35
-
36
- u = RubyProf.measure_wall_time
37
- assert u >= t, [t, u].inspect
38
- end
39
-
40
- if RubyProf::CPU_TIME
41
- def test_cpu_time_mode
42
- RubyProf::measure_mode = RubyProf::CPU_TIME
43
- assert_equal(RubyProf::CPU_TIME, RubyProf::measure_mode)
44
- end
45
-
46
- def test_cpu_time
47
- RubyProf.cpu_frequency = 2.33e9
48
-
49
- t = RubyProf.measure_cpu_time
50
- assert_kind_of Float, t
51
-
52
- u = RubyProf.measure_cpu_time
53
- assert u > t, [t, u].inspect
54
- end
55
- end
56
-
57
- if RubyProf::ALLOCATIONS
58
- def test_allocations_mode
59
- RubyProf::measure_mode = RubyProf::ALLOCATIONS
60
- assert_equal(RubyProf::ALLOCATIONS, RubyProf::measure_mode)
61
- end
62
-
63
- def test_allocations
64
- t = RubyProf.measure_allocations
65
- assert_kind_of Integer, t
66
-
67
- u = RubyProf.measure_allocations
68
- assert u > t, [t, u].inspect
69
- end
70
- end
71
-
72
- if RubyProf::MEMORY
73
- def test_memory_mode
74
- RubyProf::measure_mode = RubyProf::MEMORY
75
- assert_equal(RubyProf::MEMORY, RubyProf::measure_mode)
76
- end
77
-
78
- def test_memory
79
- t = RubyProf.measure_memory
80
- assert_kind_of Integer, t
81
-
82
- u = RubyProf.measure_memory
83
- assert(u >= t, [t, u].inspect)
84
-
85
- result = RubyProf.profile {Array.new}
86
- total = result.threads.values.first.methods.inject(0) { |sum, m| sum + m.total_time }
87
-
88
- assert(total > 0, 'Should measure more than zero kilobytes of memory usage')
89
- assert_not_equal(0, total % 1, 'Should not truncate fractional kilobyte measurements')
90
- end
91
- end
92
-
93
- if RubyProf::GC_RUNS
94
- def test_gc_runs_mode
95
- RubyProf::measure_mode = RubyProf::GC_RUNS
96
- assert_equal(RubyProf::GC_RUNS, RubyProf::measure_mode)
97
- end
98
-
99
- def test_gc_runs
100
- t = RubyProf.measure_gc_runs
101
- assert_kind_of Integer, t
102
-
103
- GC.start
104
-
105
- u = RubyProf.measure_gc_runs
106
- assert u > t, [t, u].inspect
107
- end
108
- end
109
-
110
- if RubyProf::GC_TIME
111
- def test_gc_time
112
- t = RubyProf.measure_gc_time
113
- assert_kind_of Integer, t
114
-
115
- GC.start
116
-
117
- u = RubyProf.measure_gc_time
118
- assert u > t, [t, u].inspect
119
- end
120
- end
121
- end
data/test/ruby-prof-bin DELETED
@@ -1,20 +0,0 @@
1
- #!E:/installs/ruby191p376/bin/ruby.exe
2
- #
3
- # This file was generated by RubyGems.
4
- #
5
- # The application 'ruby-prof' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
-
9
- require 'rubygems'
10
-
11
- version = ">= 0"
12
-
13
- if ARGV.first =~ /^_(.*)_$/ and Gem::Version.correct? $1 then
14
- version = $1
15
- ARGV.shift
16
- end
17
-
18
- #gem 'ruby-prof', version
19
- $: << File.dirname(__FILE__) + '/../lib'
20
- load File.dirname(__FILE__) + '/../bin/ruby-prof'