ohai 6.24.2 → 7.0.0.rc.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (259) hide show
  1. data/lib/ohai.rb +1 -1
  2. data/lib/ohai/application.rb +5 -12
  3. data/lib/ohai/common/dmi.rb +126 -0
  4. data/lib/ohai/config.rb +9 -9
  5. data/lib/ohai/{plugins/darwin/hostname.rb → dsl.rb} +7 -7
  6. data/lib/ohai/dsl/plugin.rb +186 -0
  7. data/lib/ohai/dsl/plugin/versionvi.rb +62 -0
  8. data/lib/ohai/dsl/plugin/versionvii.rb +106 -0
  9. data/lib/ohai/exception.rb +11 -2
  10. data/lib/ohai/hints.rb +48 -0
  11. data/lib/ohai/loader.rb +205 -0
  12. data/lib/ohai/mixin/command.rb +14 -18
  13. data/lib/ohai/mixin/constant_helper.rb +53 -0
  14. data/lib/ohai/mixin/gce_metadata.rb +0 -2
  15. data/lib/ohai/{plugins/freebsd/uptime.rb → mixin/network_constants.rb} +15 -13
  16. data/lib/ohai/mixin/os.rb +59 -0
  17. data/lib/ohai/mixin/seconds_to_human.rb +48 -0
  18. data/lib/ohai/plugins/aix/cpu.rb +26 -22
  19. data/lib/ohai/plugins/aix/filesystem.rb +47 -48
  20. data/lib/ohai/plugins/aix/kernel.rb +11 -7
  21. data/lib/ohai/plugins/aix/memory.rb +8 -4
  22. data/lib/ohai/plugins/aix/network.rb +73 -82
  23. data/lib/ohai/plugins/aix/platform.rb +9 -6
  24. data/lib/ohai/plugins/aix/uptime.rb +14 -12
  25. data/lib/ohai/plugins/azure.rb +33 -11
  26. data/lib/ohai/plugins/c.rb +103 -78
  27. data/lib/ohai/plugins/chef.rb +20 -8
  28. data/lib/ohai/plugins/cloud.rb +234 -230
  29. data/lib/ohai/plugins/command.rb +6 -2
  30. data/lib/ohai/plugins/darwin/cpu.rb +10 -4
  31. data/lib/ohai/plugins/darwin/filesystem.rb +32 -32
  32. data/lib/ohai/plugins/darwin/network.rb +157 -154
  33. data/lib/ohai/plugins/darwin/platform.rb +18 -16
  34. data/lib/ohai/plugins/darwin/system_profiler.rb +49 -46
  35. data/lib/ohai/plugins/dmi.rb +102 -102
  36. data/lib/ohai/plugins/ec2.rb +30 -28
  37. data/lib/ohai/plugins/erlang.rb +19 -16
  38. data/lib/ohai/plugins/eucalyptus.rb +37 -36
  39. data/lib/ohai/plugins/freebsd/cpu.rb +34 -29
  40. data/lib/ohai/plugins/freebsd/filesystem.rb +32 -32
  41. data/lib/ohai/plugins/freebsd/memory.rb +35 -25
  42. data/lib/ohai/plugins/freebsd/network.rb +94 -89
  43. data/lib/ohai/plugins/freebsd/platform.rb +10 -4
  44. data/lib/ohai/plugins/freebsd/virtualization.rb +62 -61
  45. data/lib/ohai/plugins/gce.rb +30 -36
  46. data/lib/ohai/plugins/groovy.rb +14 -11
  47. data/lib/ohai/plugins/hostname.rb +132 -10
  48. data/lib/ohai/plugins/ip_scopes.rb +31 -16
  49. data/lib/ohai/plugins/java.rb +45 -21
  50. data/lib/ohai/plugins/kernel.rb +186 -19
  51. data/lib/ohai/plugins/keys.rb +6 -2
  52. data/lib/ohai/plugins/languages.rb +6 -2
  53. data/lib/ohai/plugins/linode.rb +38 -30
  54. data/lib/ohai/plugins/linux/block_device.rb +19 -15
  55. data/lib/ohai/plugins/linux/cpu.rb +42 -38
  56. data/lib/ohai/plugins/linux/filesystem.rb +70 -130
  57. data/lib/ohai/plugins/linux/lsb.rb +35 -35
  58. data/lib/ohai/plugins/linux/memory.rb +65 -61
  59. data/lib/ohai/plugins/linux/network.rb +343 -362
  60. data/lib/ohai/plugins/linux/platform.rb +90 -88
  61. data/lib/ohai/plugins/linux/virtualization.rb +95 -90
  62. data/lib/ohai/plugins/lua.rb +14 -10
  63. data/lib/ohai/plugins/mono.rb +17 -13
  64. data/lib/ohai/plugins/netbsd/cpu.rb +25 -23
  65. data/lib/ohai/plugins/netbsd/filesystem.rb +32 -32
  66. data/lib/ohai/plugins/netbsd/memory.rb +59 -59
  67. data/lib/ohai/plugins/netbsd/network.rb +92 -88
  68. data/lib/ohai/plugins/netbsd/platform.rb +10 -3
  69. data/lib/ohai/plugins/netbsd/virtualization.rb +41 -38
  70. data/lib/ohai/plugins/network.rb +131 -130
  71. data/lib/ohai/plugins/network_listeners.rb +26 -22
  72. data/lib/ohai/plugins/nodejs.rb +14 -10
  73. data/lib/ohai/plugins/ohai.rb +11 -6
  74. data/lib/ohai/plugins/ohai_time.rb +6 -2
  75. data/lib/ohai/plugins/openbsd/cpu.rb +20 -15
  76. data/lib/ohai/plugins/openbsd/filesystem.rb +32 -32
  77. data/lib/ohai/plugins/openbsd/memory.rb +59 -59
  78. data/lib/ohai/plugins/openbsd/network.rb +92 -88
  79. data/lib/ohai/plugins/openbsd/platform.rb +10 -4
  80. data/lib/ohai/plugins/openbsd/virtualization.rb +41 -39
  81. data/lib/ohai/plugins/openstack.rb +23 -21
  82. data/lib/ohai/plugins/os.rb +8 -32
  83. data/lib/ohai/plugins/passwd.rb +27 -22
  84. data/lib/ohai/plugins/perl.rb +21 -16
  85. data/lib/ohai/plugins/php.rb +15 -12
  86. data/lib/ohai/plugins/platform.rb +9 -9
  87. data/lib/ohai/plugins/{linux/kernel.rb → ps.rb} +13 -12
  88. data/lib/ohai/plugins/python.rb +16 -12
  89. data/lib/ohai/plugins/rackspace.rb +82 -77
  90. data/lib/ohai/plugins/root_group.rb +13 -9
  91. data/lib/ohai/plugins/ruby.rb +50 -48
  92. data/lib/ohai/plugins/sigar/cpu.rb +21 -17
  93. data/lib/ohai/plugins/sigar/filesystem.rb +26 -23
  94. data/lib/ohai/plugins/sigar/memory.rb +17 -14
  95. data/lib/ohai/plugins/sigar/network.rb +133 -67
  96. data/lib/ohai/plugins/sigar/network_route.rb +33 -28
  97. data/lib/ohai/plugins/sigar/platform.rb +10 -6
  98. data/lib/ohai/plugins/solaris2/cpu.rb +41 -33
  99. data/lib/ohai/plugins/solaris2/dmi.rb +146 -146
  100. data/lib/ohai/plugins/solaris2/filesystem.rb +74 -77
  101. data/lib/ohai/plugins/{aix/hostname.rb → solaris2/memory.rb} +7 -4
  102. data/lib/ohai/plugins/solaris2/network.rb +91 -86
  103. data/lib/ohai/plugins/solaris2/platform.rb +40 -36
  104. data/lib/ohai/plugins/solaris2/virtualization.rb +54 -59
  105. data/lib/ohai/plugins/solaris2/zpools.rb +38 -38
  106. data/lib/ohai/plugins/ssh_host_key.rb +49 -45
  107. data/lib/ohai/plugins/uptime.rb +87 -25
  108. data/lib/ohai/plugins/virtualization.rb +59 -55
  109. data/lib/ohai/plugins/windows/cpu.rb +44 -40
  110. data/lib/ohai/plugins/windows/filesystem.rb +28 -22
  111. data/lib/ohai/plugins/windows/network.rb +88 -79
  112. data/lib/ohai/plugins/windows/platform.rb +10 -3
  113. data/lib/ohai/provides_map.rb +184 -0
  114. data/lib/ohai/runner.rb +109 -0
  115. data/lib/ohai/system.rb +103 -184
  116. data/lib/ohai/version.rb +4 -3
  117. data/spec/data/plugins/___lib64___libc.so.6.output +135 -0
  118. data/spec/data/plugins/___lib___libc.so.6.output +135 -0
  119. data/spec/data/plugins/cc.output +135 -0
  120. data/spec/data/plugins/cl.output +135 -0
  121. data/spec/data/plugins/devenv.com.output +135 -0
  122. data/spec/data/plugins/env.output +71 -0
  123. data/spec/data/plugins/erl.output +144 -0
  124. data/spec/data/plugins/gcc.output +135 -0
  125. data/spec/data/plugins/groovy.output +159 -0
  126. data/spec/data/plugins/java.output +143 -0
  127. data/spec/data/plugins/lua.output +143 -0
  128. data/spec/data/plugins/messages.rb +8 -0
  129. data/spec/data/plugins/node.output +143 -0
  130. data/spec/data/plugins/perl.output +143 -0
  131. data/spec/data/plugins/php.output +143 -0
  132. data/spec/data/plugins/python.output +143 -0
  133. data/spec/data/plugins/uname.output +71 -0
  134. data/spec/data/plugins/v6message.rb +2 -0
  135. data/spec/data/plugins/v7message.rb +7 -0
  136. data/spec/data/plugins/what.output +135 -0
  137. data/spec/data/plugins/xlc.output +135 -0
  138. data/spec/spec_helper.rb +52 -18
  139. data/spec/support/integration_helper.rb +44 -0
  140. data/spec/unit/dsl/plugin_spec.rb +298 -0
  141. data/spec/unit/hints_spec.rb +65 -0
  142. data/spec/unit/loader_spec.rb +226 -0
  143. data/spec/unit/mixin/ec2_metadata_spec.rb +9 -9
  144. data/spec/unit/plugins/aix/cpu_spec.rb +17 -18
  145. data/spec/unit/plugins/aix/filesystem_spec.rb +20 -18
  146. data/spec/unit/plugins/aix/hostname_spec.rb +8 -4
  147. data/spec/unit/plugins/aix/kernel_spec.rb +13 -12
  148. data/spec/unit/plugins/aix/network_spec.rb +66 -45
  149. data/spec/unit/plugins/aix/platform_spec.rb +11 -10
  150. data/spec/unit/plugins/aix/uptime_spec.rb +7 -8
  151. data/spec/unit/plugins/azure_spec.rb +20 -21
  152. data/spec/unit/plugins/c_spec.rb +88 -87
  153. data/spec/unit/plugins/chef_spec.rb +5 -6
  154. data/spec/unit/plugins/cloud_spec.rb +81 -82
  155. data/spec/unit/plugins/darwin/cpu_spec.rb +8 -9
  156. data/spec/unit/plugins/darwin/hostname_spec.rb +23 -11
  157. data/spec/unit/plugins/darwin/kernel_spec.rb +39 -16
  158. data/spec/unit/plugins/darwin/network_spec.rb +375 -378
  159. data/spec/unit/plugins/darwin/platform_spec.rb +23 -50
  160. data/spec/unit/plugins/darwin/system_profiler_spec.rb +7 -8
  161. data/spec/unit/plugins/dmi_spec.rb +7 -12
  162. data/spec/unit/plugins/ec2_spec.rb +70 -59
  163. data/spec/unit/plugins/erlang_spec.rb +18 -20
  164. data/spec/unit/plugins/eucalyptus_spec.rb +37 -33
  165. data/spec/unit/plugins/fail_spec.rb +276 -23
  166. data/spec/unit/plugins/freebsd/hostname_spec.rb +11 -9
  167. data/spec/unit/plugins/freebsd/kernel_spec.rb +8 -8
  168. data/spec/unit/plugins/freebsd/platform_spec.rb +9 -10
  169. data/spec/unit/plugins/freebsd/virtualization_spec.rb +32 -32
  170. data/spec/unit/plugins/gce_spec.rb +19 -25
  171. data/spec/unit/plugins/groovy_spec.rb +10 -16
  172. data/spec/unit/plugins/hostname_spec.rb +45 -20
  173. data/spec/unit/plugins/ip_scopes_spec.rb +97 -0
  174. data/spec/unit/plugins/java_spec.rb +145 -99
  175. data/spec/unit/plugins/kernel_spec.rb +51 -15
  176. data/spec/unit/plugins/linode_spec.rb +31 -29
  177. data/spec/unit/plugins/linux/cpu_spec.rb +42 -43
  178. data/spec/unit/plugins/linux/filesystem_spec.rb +143 -324
  179. data/spec/unit/plugins/linux/hostname_spec.rb +16 -23
  180. data/spec/unit/plugins/linux/kernel_spec.rb +22 -8
  181. data/spec/unit/plugins/linux/lsb_spec.rb +54 -56
  182. data/spec/unit/plugins/linux/network_spec.rb +196 -238
  183. data/spec/unit/plugins/linux/platform_spec.rb +186 -205
  184. data/spec/unit/plugins/linux/uptime_spec.rb +13 -25
  185. data/spec/unit/plugins/linux/virtualization_spec.rb +149 -129
  186. data/spec/unit/plugins/lua_spec.rb +12 -15
  187. data/spec/unit/plugins/mono_spec.rb +10 -15
  188. data/spec/unit/plugins/netbsd/hostname_spec.rb +17 -7
  189. data/spec/unit/plugins/netbsd/kernel_spec.rb +8 -8
  190. data/spec/unit/plugins/netbsd/platform_spec.rb +8 -10
  191. data/spec/unit/plugins/network_spec.rb +358 -235
  192. data/spec/unit/plugins/nodejs_spec.rb +13 -15
  193. data/spec/unit/plugins/ohai_spec.rb +3 -4
  194. data/spec/unit/plugins/ohai_time_spec.rb +8 -9
  195. data/spec/unit/plugins/openbsd/hostname_spec.rb +21 -11
  196. data/spec/unit/plugins/openbsd/kernel_spec.rb +8 -8
  197. data/spec/unit/plugins/openbsd/platform_spec.rb +6 -12
  198. data/spec/unit/plugins/openstack_spec.rb +214 -0
  199. data/spec/unit/plugins/os_spec.rb +13 -16
  200. data/spec/unit/plugins/passwd_spec.rb +12 -13
  201. data/spec/unit/plugins/perl_spec.rb +20 -44
  202. data/spec/unit/plugins/php_spec.rb +20 -15
  203. data/spec/unit/plugins/platform_spec.rb +24 -29
  204. data/spec/unit/plugins/python_spec.rb +13 -17
  205. data/spec/unit/plugins/rackspace_spec.rb +90 -57
  206. data/spec/unit/plugins/root_group_spec.rb +17 -19
  207. data/spec/unit/plugins/ruby_spec.rb +15 -16
  208. data/spec/unit/plugins/sigar/network_route_spec.rb +12 -13
  209. data/spec/unit/plugins/solaris2/cpu_spec.rb +82 -0
  210. data/spec/unit/plugins/solaris2/hostname_spec.rb +12 -13
  211. data/spec/unit/plugins/solaris2/kernel_spec.rb +11 -15
  212. data/{lib/ohai/plugins/openbsd/uptime.rb → spec/unit/plugins/solaris2/memory_spec.rb} +10 -12
  213. data/spec/unit/plugins/solaris2/network_spec.rb +44 -20
  214. data/spec/unit/plugins/solaris2/platform_spec.rb +13 -22
  215. data/spec/unit/plugins/solaris2/virtualization_spec.rb +37 -45
  216. data/spec/unit/plugins/ssh_host_keys_spec.rb +11 -15
  217. data/spec/unit/provides_map_spec.rb +208 -0
  218. data/spec/unit/runner_spec.rb +488 -0
  219. data/spec/unit/system_spec.rb +639 -104
  220. metadata +151 -87
  221. checksums.yaml +0 -7
  222. data/lib/ohai/mixin/from_file.rb +0 -36
  223. data/lib/ohai/plugins/aix/ps.rb +0 -23
  224. data/lib/ohai/plugins/darwin/kernel.rb +0 -37
  225. data/lib/ohai/plugins/darwin/ps.rb +0 -23
  226. data/lib/ohai/plugins/darwin/uptime.rb +0 -32
  227. data/lib/ohai/plugins/dmi_common.rb +0 -121
  228. data/lib/ohai/plugins/freebsd/hostname.rb +0 -22
  229. data/lib/ohai/plugins/freebsd/kernel.rb +0 -37
  230. data/lib/ohai/plugins/freebsd/ps.rb +0 -24
  231. data/lib/ohai/plugins/hpux/cpu.rb +0 -19
  232. data/lib/ohai/plugins/hpux/filesystem.rb +0 -19
  233. data/lib/ohai/plugins/hpux/hostname.rb +0 -19
  234. data/lib/ohai/plugins/hpux/memory.rb +0 -19
  235. data/lib/ohai/plugins/hpux/network.rb +0 -19
  236. data/lib/ohai/plugins/hpux/platform.rb +0 -19
  237. data/lib/ohai/plugins/hpux/ps.rb +0 -23
  238. data/lib/ohai/plugins/hpux/uptime.rb +0 -19
  239. data/lib/ohai/plugins/linux/hostname.rb +0 -40
  240. data/lib/ohai/plugins/linux/ps.rb +0 -23
  241. data/lib/ohai/plugins/linux/uptime.rb +0 -28
  242. data/lib/ohai/plugins/netbsd/hostname.rb +0 -22
  243. data/lib/ohai/plugins/netbsd/kernel.rb +0 -35
  244. data/lib/ohai/plugins/netbsd/ps.rb +0 -24
  245. data/lib/ohai/plugins/netbsd/uptime.rb +0 -31
  246. data/lib/ohai/plugins/openbsd/hostname.rb +0 -22
  247. data/lib/ohai/plugins/openbsd/kernel.rb +0 -35
  248. data/lib/ohai/plugins/openbsd/ps.rb +0 -24
  249. data/lib/ohai/plugins/sigar/hostname.rb +0 -28
  250. data/lib/ohai/plugins/sigar/uptime.rb +0 -27
  251. data/lib/ohai/plugins/solaris2/hostname.rb +0 -34
  252. data/lib/ohai/plugins/solaris2/kernel.rb +0 -40
  253. data/lib/ohai/plugins/solaris2/ps.rb +0 -23
  254. data/lib/ohai/plugins/solaris2/uptime.rb +0 -36
  255. data/lib/ohai/plugins/windows/hostname.rb +0 -33
  256. data/lib/ohai/plugins/windows/kernel.rb +0 -58
  257. data/lib/ohai/plugins/windows/kernel_devices.rb +0 -39
  258. data/lib/ohai/plugins/windows/uptime.rb +0 -23
  259. data/spec/unit/mixin/from_file_spec.rb +0 -53
@@ -0,0 +1,135 @@
1
+ platform "centos-5.5"
2
+ arch "x64"
3
+ env []
4
+ params "/?"
5
+ stdout ""
6
+ stderr "sh: devenv.com: command not found\n"
7
+ exit_status 127
8
+
9
+ platform "centos-6.2"
10
+ arch "x86"
11
+ env []
12
+ params "/?"
13
+ stdout ""
14
+ stderr "sh: devenv.com: command not found\n"
15
+ exit_status 127
16
+
17
+ platform "centos-6.2"
18
+ arch "x64"
19
+ env []
20
+ params "/?"
21
+ stdout ""
22
+ stderr "sh: devenv.com: command not found\n"
23
+ exit_status 127
24
+
25
+ platform "ubuntu-10.04"
26
+ arch "x86"
27
+ env []
28
+ params "/?"
29
+ stdout ""
30
+ stderr "sh: devenv.com: not found\n"
31
+ exit_status 127
32
+
33
+ platform "ubuntu-10.04"
34
+ arch "x64"
35
+ env []
36
+ params "/?"
37
+ stdout ""
38
+ stderr "sh: devenv.com: not found\n"
39
+ exit_status 127
40
+
41
+ platform "ubuntu-12.04"
42
+ arch "x86"
43
+ env []
44
+ params "/?"
45
+ stdout ""
46
+ stderr "sh: 1: devenv.com: not found\n"
47
+ exit_status 127
48
+
49
+ platform "ubuntu-12.04"
50
+ arch "x64"
51
+ env []
52
+ params "/?"
53
+ stdout ""
54
+ stderr "sh: 1: devenv.com: not found\n"
55
+ exit_status 127
56
+
57
+ platform "ubuntu-12.10"
58
+ arch "x64"
59
+ env []
60
+ params "/?"
61
+ stdout ""
62
+ stderr "sh: 1: devenv.com: not found\n"
63
+ exit_status 127
64
+
65
+ platform "ubuntu-13.04"
66
+ arch "x86"
67
+ env []
68
+ params "/?"
69
+ stdout ""
70
+ stderr "sh: 1: devenv.com: not found\n"
71
+ exit_status 127
72
+
73
+ platform "ubuntu-13.04"
74
+ arch "x64"
75
+ env []
76
+ params "/?"
77
+ stdout ""
78
+ stderr "sh: 1: devenv.com: not found\n"
79
+ exit_status 127
80
+
81
+ platform "centos-5.5"
82
+ arch "x64"
83
+ env ["gcc"]
84
+ params "/?"
85
+ stdout ""
86
+ stderr "sh: devenv.com: command not found\n"
87
+ exit_status 127
88
+
89
+ platform "centos-6.2"
90
+ arch "x86"
91
+ env ["gcc"]
92
+ params "/?"
93
+ stdout ""
94
+ stderr "sh: devenv.com: command not found\n"
95
+ exit_status 127
96
+
97
+ platform "centos-6.2"
98
+ arch "x64"
99
+ env ["gcc"]
100
+ params "/?"
101
+ stdout ""
102
+ stderr "sh: devenv.com: command not found\n"
103
+ exit_status 127
104
+
105
+ platform "ubuntu-10.04"
106
+ arch "x86"
107
+ env ["gcc"]
108
+ params "/?"
109
+ stdout ""
110
+ stderr "sh: devenv.com: not found\n"
111
+ exit_status 127
112
+
113
+ platform "ubuntu-10.04"
114
+ arch "x64"
115
+ env ["gcc"]
116
+ params "/?"
117
+ stdout ""
118
+ stderr "sh: devenv.com: not found\n"
119
+ exit_status 127
120
+
121
+ platform "ubuntu-12.04"
122
+ arch "x86"
123
+ env ["gcc"]
124
+ params "/?"
125
+ stdout ""
126
+ stderr "sh: 1: devenv.com: not found\n"
127
+ exit_status 127
128
+
129
+ platform "ubuntu-12.04"
130
+ arch "x64"
131
+ env ["gcc"]
132
+ params "/?"
133
+ stdout ""
134
+ stderr "sh: 1: devenv.com: not found\n"
135
+ exit_status 127
@@ -0,0 +1,71 @@
1
+ platform "centos-5.9"
2
+ arch "x86"
3
+ env []
4
+ params "lsmod"
5
+ stdout "Module Size Used by\nvboxsf 43600 2 \nautofs4 28741 3 \nlockd 63209 0 \nsunrpc 149373 2 lockd\nbe2iscsi 60629 0 \nib_iser 35609 0 \nrdma_cm 39929 1 ib_iser\nib_cm 38061 1 rdma_cm\niw_cm 13253 1 rdma_cm\nib_sa 40117 2 rdma_cm,ib_cm\nib_mad 38741 2 ib_cm,ib_sa\nib_core 65985 6 ib_iser,rdma_cm,ib_cm,iw_cm,ib_sa,ib_mad\nib_addr 12741 1 rdma_cm\niscsi_tcp 20041 0 \nbnx2i 47325 0 \ncnic 52309 1 bnx2i\nipv6 273057 13 rdma_cm,ib_addr,cnic\nxfrm_nalgo 13381 1 ipv6\ncrypto_api 12609 1 xfrm_nalgo\nuio 14793 1 cnic\ncxgb3i 31177 0 \nlibcxgbi 54477 1 cxgb3i\ncxgb3 168985 1 cxgb3i\n8021q 26313 1 cxgb3\nlibiscsi_tcp 22213 3 iscsi_tcp,cxgb3i,libcxgbi\nlibiscsi2 42693 7 be2iscsi,ib_iser,iscsi_tcp,bnx2i,cxgb3i,libcxgbi,libiscsi_tcp\nscsi_transport_iscsi2 37709 8 be2iscsi,ib_iser,iscsi_tcp,bnx2i,libcxgbi,libiscsi2\nscsi_transport_iscsi 6085 1 scsi_transport_iscsi2\ndm_multipath 27213 0 \nscsi_dh 12481 1 dm_multipath\nvideo 21193 0 \nbacklight 10049 1 video\nsbs 18533 0 \npower_meter 16461 0 \nhwmon 7365 1 power_meter\ni2c_ec 9025 1 sbs\ndell_wmi 8401 0 \nwmi 12137 1 dell_wmi\nbutton 10705 0 \nbattery 13637 0 \nasus_acpi 19289 0 \nac 9157 0 \nlp 15849 0 \nsg 36973 0 \nparport_pc 29669 0 \nparport 37513 2 lp,parport_pc\nvboxguest 201480 2 vboxsf\ni2c_piix4 13133 0 \ni2c_core 24897 2 i2c_ec,i2c_piix4\npcspkr 7105 0 \nide_cd 40161 0 \nserio_raw 10693 0 \ncdrom 36577 1 ide_cd\ntpm_tis 16713 0 \ntpm 19041 1 tpm_tis\ntpm_bios 11073 1 tpm\ne1000 120285 0 \ndm_raid45 67273 0 \ndm_message 6977 1 dm_raid45\ndm_region_hash 15681 1 dm_raid45\ndm_mem_cache 9537 1 dm_raid45\ndm_snapshot 23653 0 \ndm_zero 6209 0 \ndm_mirror 24393 0 \ndm_log 14785 3 dm_raid45,dm_region_hash,dm_mirror\ndm_mod 63993 11 dm_multipath,dm_raid45,dm_snapshot,dm_zero,dm_mirror,dm_log\nata_piix 23749 0 \nahci 39245 2 \nlibata 158085 2 ata_piix,ahci\nsd_mod 25409 3 \nscsi_mod 144277 11 be2iscsi,ib_iser,iscsi_tcp,bnx2i,libcxgbi,libiscsi2,scsi_transport_iscsi2,scsi_dh,sg,libata,sd_mod\next3 126281 2 \njbd 57705 1 ext3\nuhci_hcd 25421 0 \nohci_hcd 24937 0 \nehci_hcd 34509 0 \n"
6
+ stderr ""
7
+ exit_status 0
8
+
9
+ platform "centos-5.9"
10
+ arch "x64"
11
+ env []
12
+ params "lsmod"
13
+ stdout "Module Size Used by\nvboxsf 73456 2 \nautofs4 62153 3 \nlockd 101425 0 \nsunrpc 203273 2 lockd\nbe2iscsi 95837 0 \nib_iser 68161 0 \nrdma_cm 73301 1 ib_iser\nib_cm 71273 1 rdma_cm\niw_cm 43593 1 rdma_cm\nib_sa 76233 2 rdma_cm,ib_cm\nib_mad 72037 2 ib_cm,ib_sa\nib_core 107841 6 ib_iser,rdma_cm,ib_cm,iw_cm,ib_sa,ib_mad\nib_addr 42697 1 rdma_cm\niscsi_tcp 50893 0 \nbnx2i 82017 0 \ncnic 86761 1 bnx2i\nipv6 438241 13 rdma_cm,ib_addr,cnic\nxfrm_nalgo 43333 1 ipv6\ncrypto_api 42945 1 xfrm_nalgo\nuio 45777 1 cnic\ncxgb3i 64849 0 \nlibcxgbi 91597 1 cxgb3i\ncxgb3 217521 1 cxgb3i\n8021q 58961 1 cxgb3\nlibiscsi_tcp 53573 3 iscsi_tcp,cxgb3i,libcxgbi\nlibiscsi2 77765 7 be2iscsi,ib_iser,iscsi_tcp,bnx2i,cxgb3i,libcxgbi,libiscsi_tcp\nscsi_transport_iscsi2 73945 8 be2iscsi,ib_iser,iscsi_tcp,bnx2i,libcxgbi,libiscsi2\nscsi_transport_iscsi 35017 1 scsi_transport_iscsi2\ndm_multipath 58969 0 \nscsi_dh 42561 1 dm_multipath\nvideo 53197 0 \nbacklight 39873 1 video\nsbs 49921 0 \npower_meter 47053 0 \nhwmon 36553 1 power_meter\ni2c_ec 38593 1 sbs\ndell_wmi 37601 0 \nwmi 41985 1 dell_wmi\nbutton 40545 0 \nbattery 43849 0 \nasus_acpi 50917 0 \nacpi_memhotplug 40517 0 \nac 38729 0 \nlp 47121 0 \nsg 71033 0 \nvboxguest 264716 2 vboxsf\ntpm_tis 48077 0 \ntpm 50273 1 tpm_tis\ntpm_bios 40897 1 tpm\nparport_pc 62952 0 \nide_cd 73825 0 \nparport 73165 2 lp,parport_pc\ni2c_piix4 43725 0 \ni2c_core 57537 2 i2c_ec,i2c_piix4\nserio_raw 40517 0 \ne1000 162793 0 \ncdrom 68713 1 ide_cd\npcspkr 36289 0 \ndm_raid45 99785 0 \ndm_message 36289 1 dm_raid45\ndm_region_hash 46145 1 dm_raid45\ndm_mem_cache 38977 1 dm_raid45\ndm_snapshot 52233 0 \ndm_zero 35265 0 \ndm_mirror 54737 0 \ndm_log 44993 3 dm_raid45,dm_region_hash,dm_mirror\ndm_mod 102417 11 dm_multipath,dm_raid45,dm_snapshot,dm_zero,dm_mirror,dm_log\nata_piix 57285 0 \nahci 74317 2 \nlibata 210769 2 ata_piix,ahci\nsd_mod 56513 3 \nscsi_mod 199641 11 be2iscsi,ib_iser,iscsi_tcp,bnx2i,libcxgbi,libiscsi2,scsi_transport_iscsi2,scsi_dh,sg,libata,sd_mod\next3 169937 2 \njbd 95025 1 ext3\nuhci_hcd 57433 0 \nohci_hcd 56181 0 \nehci_hcd 66765 0 \n"
14
+ stderr ""
15
+ exit_status 0
16
+
17
+ platform "centos-6.4"
18
+ arch "x86"
19
+ env []
20
+ params "lsmod"
21
+ stdout "Module Size Used by\nvboxvideo 1313 0 \ndrm 215850 1 vboxvideo\nvboxsf 36672 2 \nipv6 264059 12 \nppdev 7297 0 \nparport_pc 19086 0 \nparport 29925 2 ppdev,parport_pc\nmicrocode 12216 0 \ni2c_piix4 11156 0 \ni2c_core 25632 2 drm,i2c_piix4\nvboxguest 194987 2 vboxsf\ne1000 149778 0 \nsg 24038 0 \next4 328781 2 \nmbcache 6017 1 ext4\njbd2 74118 1 ext4\nsr_mod 13282 0 \ncdrom 33416 1 sr_mod\nsd_mod 34923 3 \ncrc_t10dif 1217 1 sd_mod\npata_acpi 2513 0 \nata_generic 2805 0 \nata_piix 20413 0 \nahci 34601 2 \ndm_mirror 11774 0 \ndm_region_hash 9644 1 dm_mirror\ndm_log 8354 2 dm_mirror,dm_region_hash\ndm_mod 68755 8 dm_mirror,dm_log\n"
22
+ stderr ""
23
+ exit_status 0
24
+
25
+ platform "centos-6.4"
26
+ arch "x64"
27
+ env []
28
+ params "lsmod"
29
+ stdout "Module Size Used by\nvboxvideo 2101 0 \ndrm 265638 1 vboxvideo\nvboxsf 37454 2 \nipv6 321422 12 \nppdev 8537 0 \nparport_pc 22690 0 \nparport 36209 2 ppdev,parport_pc\nmicrocode 112653 0 \ni2c_piix4 12608 0 \ni2c_core 31084 2 drm,i2c_piix4\nvboxguest 243989 2 vboxsf\ne1000 170646 0 \nsg 29350 0 \next4 363408 2 \nmbcache 8193 1 ext4\njbd2 90230 1 ext4\nsd_mod 38976 3 \ncrc_t10dif 1541 1 sd_mod\nsr_mod 15177 0 \ncdrom 39085 1 sr_mod\nahci 41127 2 \npata_acpi 3701 0 \nata_generic 3837 0 \nata_piix 24121 0 \ndm_mirror 14133 0 \ndm_region_hash 12085 1 dm_mirror\ndm_log 9930 2 dm_mirror,dm_region_hash\ndm_mod 82839 8 dm_mirror,dm_log\n"
30
+ stderr ""
31
+ exit_status 0
32
+
33
+ platform "ubuntu-10.04"
34
+ arch "x86"
35
+ env []
36
+ params "lsmod"
37
+ stdout "Module Size Used by\nnls_cp437 4919 2 \nvboxvideo 1228 0 \ndrm 163747 1 vboxvideo\nagpgart 31724 1 drm\nvboxsf 37856 2 \ndm_crypt 11331 0 \nppdev 5259 0 \nparport_pc 25962 0 \nlp 7028 0 \nvboxguest 199361 2 vboxsf\npsmouse 63677 0 \ni2c_piix4 8335 0 \nparport 32635 3 ppdev,parport_pc,lp\nserio_raw 3978 0 \nfbcon 35102 71 \ntileblit 1999 1 fbcon\nfont 7557 1 fbcon\nbitblit 4707 1 fbcon\nsoftcursor 1189 1 bitblit\nvga16fb 11385 1 \nvgastate 8961 1 vga16fb\ne1000 97435 0 \nahci 32680 2 \n"
38
+ stderr ""
39
+ exit_status 0
40
+
41
+ platform "ubuntu-10.04"
42
+ arch "x64"
43
+ env []
44
+ params "lsmod"
45
+ stdout "Module Size Used by\nnls_cp437 6351 2 \nvboxvideo 1932 0 \ndrm 199968 1 vboxvideo\nvboxsf 38636 2 \ndm_crypt 13043 0 \nppdev 6375 0 \nlp 9336 0 \nparport_pc 29958 0 \npsmouse 65040 0 \nserio_raw 4950 0 \nparport 37160 3 ppdev,lp,parport_pc\nvboxguest 230150 2 vboxsf\ni2c_piix4 9639 0 \nfbcon 39270 71 \ntileblit 2487 1 fbcon\nfont 8053 1 fbcon\nbitblit 5811 1 fbcon\nsoftcursor 1565 1 bitblit\nahci 38350 2 \ne1000 109015 0 \nvga16fb 12757 1 \nvgastate 9857 1 vga16fb\n"
46
+ stderr ""
47
+ exit_status 0
48
+
49
+ platform "ubuntu-12.04"
50
+ arch "x86"
51
+ env []
52
+ params "lsmod"
53
+ stdout "Module Size Used by\nvboxvideo 12540 0 \ndrm 240232 1 vboxvideo\nvboxsf 42521 2 \ndm_crypt 22572 0 \nppdev 12850 0 \nmicrocode 18396 0 \nparport_pc 32115 0 \npsmouse 91022 0 \nserio_raw 13032 0 \ni2c_piix4 13094 0 \nmac_hid 13078 0 \nvboxguest 202291 2 vboxsf\next2 67991 1 \nlp 17456 0 \nparport 40931 3 ppdev,parport_pc,lp\nvesafb 13518 1 \ne1000 101894 0 \n"
54
+ stderr ""
55
+ exit_status 0
56
+
57
+ platform "ubuntu-12.04"
58
+ arch "x64"
59
+ env []
60
+ params "lsmod"
61
+ stdout "Module Size Used by\nvboxvideo 12612 0 \ndrm 290344 1 vboxvideo\nvboxsf 43769 2 \ndm_crypt 23126 0 \nppdev 17114 0 \npsmouse 102075 0 \nserio_raw 13216 0 \nmicrocode 23030 0 \nparport_pc 32867 0 \nmac_hid 13254 0 \nvboxguest 231265 2 vboxsf\next2 73799 1 \ni2c_piix4 13302 0 \nlp 17800 0 \nparport 46563 3 ppdev,parport_pc,lp\nvesafb 13846 1 \ne1000 116911 0 \n"
62
+ stderr ""
63
+ exit_status 0
64
+
65
+ platform "ubuntu-13.04"
66
+ arch "x64"
67
+ env []
68
+ params "lsmod"
69
+ stdout "Module Size Used by\nvboxvideo 12611 0 \ndrm 286313 1 vboxvideo\nvboxsf 39557 2 \ndm_crypt 22820 0 \nppdev 17073 0 \nmicrocode 22881 0 \npsmouse 95870 0 \nserio_raw 13215 0 \nmac_hid 13205 0 \nparport_pc 28152 0 \ni2c_piix4 13266 0 \nvboxguest 231397 2 vboxsf\next2 72837 1 \nlp 17759 0 \nparport 46345 3 lp,ppdev,parport_pc\nvesafb 13828 1 \nahci 25731 2 \ne1000 114507 0 \nlibahci 31364 1 ahci\n"
70
+ stderr ""
71
+ exit_status 0
@@ -0,0 +1,144 @@
1
+ platform "centos-5.9"
2
+ arch "x86"
3
+ env []
4
+ params "+V"
5
+ stdout ""
6
+ stderr "bash: line 2: erl: command not found\n"
7
+ exit_status 127
8
+
9
+ platform "centos-5.9"
10
+ arch "x86"
11
+ env ["erlang"]
12
+ params "+V"
13
+ stdout ""
14
+ stderr "Erlang (ASYNC_THREADS) (BEAM) emulator version 5.8.5\r\n"
15
+ exit_status 0
16
+
17
+ platform "centos-5.9"
18
+ arch "x64"
19
+ env []
20
+ params "+V"
21
+ stdout ""
22
+ stderr "bash: line 2: erl: command not found\n"
23
+ exit_status 127
24
+
25
+ platform "centos-5.9"
26
+ arch "x64"
27
+ env ["erlang"]
28
+ params "+V"
29
+ stdout ""
30
+ stderr "Erlang (ASYNC_THREADS) (BEAM) emulator version 5.8.5\r\n"
31
+ exit_status 0
32
+
33
+ platform "centos-6.4"
34
+ arch "x86"
35
+ env []
36
+ params "+V"
37
+ stdout ""
38
+ stderr "bash: line 2: erl: command not found\n"
39
+ exit_status 127
40
+
41
+ platform "centos-6.4"
42
+ arch "x86"
43
+ env ["erlang"]
44
+ params "+V"
45
+ stdout ""
46
+ stderr "Erlang (ASYNC_THREADS) (BEAM) emulator version 5.8.5\r\n"
47
+ exit_status 0
48
+
49
+ platform "centos-6.4"
50
+ arch "x64"
51
+ env []
52
+ params "+V"
53
+ stdout ""
54
+ stderr "bash: line 2: erl: command not found\n"
55
+ exit_status 127
56
+
57
+ platform "centos-6.4"
58
+ arch "x64"
59
+ env ["erlang"]
60
+ params "+V"
61
+ stdout ""
62
+ stderr "Erlang (ASYNC_THREADS) (BEAM) emulator version 5.8.5\r\n"
63
+ exit_status 0
64
+
65
+ platform "ubuntu-10.04"
66
+ arch "x86"
67
+ env []
68
+ params "+V"
69
+ stdout ""
70
+ stderr "bash: line 2: erl: command not found\n"
71
+ exit_status 127
72
+
73
+ platform "ubuntu-10.04"
74
+ arch "x86"
75
+ env ["erlang"]
76
+ params "+V"
77
+ stdout ""
78
+ stderr "Erlang (ASYNC_THREADS,HIPE) (BEAM) emulator version 5.7.4\r\n"
79
+ exit_status 0
80
+
81
+ platform "ubuntu-10.04"
82
+ arch "x64"
83
+ env []
84
+ params "+V"
85
+ stdout ""
86
+ stderr "bash: line 2: erl: command not found\n"
87
+ exit_status 127
88
+
89
+ platform "ubuntu-10.04"
90
+ arch "x64"
91
+ env ["erlang"]
92
+ params "+V"
93
+ stdout ""
94
+ stderr "Erlang (ASYNC_THREADS,HIPE) (BEAM) emulator version 5.7.4\r\n"
95
+ exit_status 0
96
+
97
+ platform "ubuntu-12.04"
98
+ arch "x86"
99
+ env []
100
+ params "+V"
101
+ stdout ""
102
+ stderr "bash: line 2: erl: command not found\n"
103
+ exit_status 127
104
+
105
+ platform "ubuntu-12.04"
106
+ arch "x86"
107
+ env ["erlang"]
108
+ params "+V"
109
+ stdout ""
110
+ stderr "Erlang (ASYNC_THREADS) (BEAM) emulator version 5.8.5\r\n"
111
+ exit_status 0
112
+
113
+ platform "ubuntu-12.04"
114
+ arch "x64"
115
+ env []
116
+ params "+V"
117
+ stdout ""
118
+ stderr "bash: line 2: erl: command not found\n"
119
+ exit_status 127
120
+
121
+ platform "ubuntu-12.04"
122
+ arch "x64"
123
+ env ["erlang"]
124
+ params "+V"
125
+ stdout ""
126
+ stderr "Erlang (ASYNC_THREADS) (BEAM) emulator version 5.8.5\r\n"
127
+ exit_status 0
128
+
129
+ platform "ubuntu-13.04"
130
+ arch "x64"
131
+ env []
132
+ params "+V"
133
+ stdout ""
134
+ stderr "bash: line 2: erl: command not found\n"
135
+ exit_status 127
136
+
137
+ platform "ubuntu-13.04"
138
+ arch "x64"
139
+ env ["erlang"]
140
+ params "+V"
141
+ stdout ""
142
+ stderr "Erlang (ASYNC_THREADS) (BEAM) emulator version 5.9.1\r\n"
143
+ exit_status 0
144
+
@@ -0,0 +1,135 @@
1
+ platform "centos-5.5"
2
+ arch "x64"
3
+ env []
4
+ params "-v"
5
+ stdout ""
6
+ stderr "Using built-in specs.\nTarget: x86_64-redhat-linux\nConfigured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --enable-plugin --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic --host=x86_64-redhat-linux\nThread model: posix\ngcc version 4.1.2 20080704 (Red Hat 4.1.2-48)\n"
7
+ exit_status 0
8
+
9
+ platform "centos-6.2"
10
+ arch "x86"
11
+ env []
12
+ params "-v"
13
+ stdout ""
14
+ stderr "Using built-in specs.\nTarget: i686-redhat-linux\nConfigured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-ppl --with-cloog --with-tune=generic --with-arch=i686 --build=i686-redhat-linux\nThread model: posix\ngcc version 4.4.6 20110731 (Red Hat 4.4.6-3) (GCC) \n"
15
+ exit_status 0
16
+
17
+ platform "centos-6.2"
18
+ arch "x64"
19
+ env []
20
+ params "-v"
21
+ stdout ""
22
+ stderr "Using built-in specs.\nTarget: x86_64-redhat-linux\nConfigured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-ppl --with-cloog --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux\nThread model: posix\ngcc version 4.4.6 20110731 (Red Hat 4.4.6-3) (GCC) \n"
23
+ exit_status 0
24
+
25
+ platform "ubuntu-10.04"
26
+ arch "x86"
27
+ env []
28
+ params "-v"
29
+ stdout ""
30
+ stderr "command not found"
31
+ exit_status 127
32
+
33
+ platform "ubuntu-10.04"
34
+ arch "x64"
35
+ env []
36
+ params "-v"
37
+ stdout ""
38
+ stderr "command not found"
39
+ exit_status 127
40
+
41
+ platform "ubuntu-12.04"
42
+ arch "x86"
43
+ env []
44
+ params "-v"
45
+ stdout ""
46
+ stderr "command not found"
47
+ exit_status 127
48
+
49
+ platform "ubuntu-12.04"
50
+ arch "x64"
51
+ env []
52
+ params "-v"
53
+ stdout ""
54
+ stderr "command not found"
55
+ exit_status 127
56
+
57
+ platform "ubuntu-12.10"
58
+ arch "x64"
59
+ env []
60
+ params "-v"
61
+ stdout ""
62
+ stderr "command not found"
63
+ exit_status 127
64
+
65
+ platform "ubuntu-13.04"
66
+ arch "x86"
67
+ env []
68
+ params "-v"
69
+ stdout ""
70
+ stderr "command not found"
71
+ exit_status 127
72
+
73
+ platform "ubuntu-13.04"
74
+ arch "x64"
75
+ env []
76
+ params "-v"
77
+ stdout ""
78
+ stderr "command not found"
79
+ exit_status 127
80
+
81
+ platform "centos-5.5"
82
+ arch "x64"
83
+ env ["gcc"]
84
+ params "-v"
85
+ stdout ""
86
+ stderr "Using built-in specs.\nTarget: x86_64-redhat-linux\nConfigured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --disable-plugin --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic --host=x86_64-redhat-linux\nThread model: posix\ngcc version 4.1.2 20080704 (Red Hat 4.1.2-54)\n"
87
+ exit_status 0
88
+
89
+ platform "centos-6.2"
90
+ arch "x86"
91
+ env ["gcc"]
92
+ params "-v"
93
+ stdout ""
94
+ stderr "Using built-in specs.\nTarget: i686-redhat-linux\nConfigured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-ppl --with-cloog --with-tune=generic --with-arch=i686 --build=i686-redhat-linux\nThread model: posix\ngcc version 4.4.7 20120313 (Red Hat 4.4.7-3) (GCC) \n"
95
+ exit_status 0
96
+
97
+ platform "centos-6.2"
98
+ arch "x64"
99
+ env ["gcc"]
100
+ params "-v"
101
+ stdout ""
102
+ stderr "Using built-in specs.\nTarget: x86_64-redhat-linux\nConfigured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-ppl --with-cloog --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux\nThread model: posix\ngcc version 4.4.7 20120313 (Red Hat 4.4.7-3) (GCC) \n"
103
+ exit_status 0
104
+
105
+ platform "ubuntu-10.04"
106
+ arch "x86"
107
+ env ["gcc"]
108
+ params "-v"
109
+ stdout ""
110
+ stderr "Using built-in specs.\nTarget: i486-linux-gnu\nConfigured with: ../src/configure -v --with-pkgversion='Ubuntu 4.4.3-4ubuntu5.1' --with-bugurl=file:///usr/share/doc/gcc-4.4/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --enable-multiarch --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.4 --program-suffix=-4.4 --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-plugin --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i486 --with-tune=generic --enable-checking=release --build=i486-linux-gnu --host=i486-linux-gnu --target=i486-linux-gnu\nThread model: posix\ngcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5.1) \n"
111
+ exit_status 0
112
+
113
+ platform "ubuntu-10.04"
114
+ arch "x64"
115
+ env ["gcc"]
116
+ params "-v"
117
+ stdout ""
118
+ stderr "Using built-in specs.\nTarget: x86_64-linux-gnu\nConfigured with: ../src/configure -v --with-pkgversion='Ubuntu 4.4.3-4ubuntu5.1' --with-bugurl=file:///usr/share/doc/gcc-4.4/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --enable-multiarch --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.4 --program-suffix=-4.4 --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i486 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu\nThread model: posix\ngcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5.1) \n"
119
+ exit_status 0
120
+
121
+ platform "ubuntu-12.04"
122
+ arch "x86"
123
+ env ["gcc"]
124
+ params "-v"
125
+ stdout ""
126
+ stderr "Using built-in specs.\nCOLLECT_GCC=gcc\nCOLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.6/lto-wrapper\nTarget: i686-linux-gnu\nConfigured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.6.3-1ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu\nThread model: posix\ngcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) \n"
127
+ exit_status 0
128
+
129
+ platform "ubuntu-12.04"
130
+ arch "x64"
131
+ env ["gcc"]
132
+ params "-v"
133
+ stdout ""
134
+ stderr "Using built-in specs.\nCOLLECT_GCC=gcc\nCOLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.6/lto-wrapper\nTarget: x86_64-linux-gnu\nConfigured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.6.3-1ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu\nThread model: posix\ngcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) \n"
135
+ exit_status 0