ohai 14.6.2 → 14.8.10

Sign up to get free protection for your applications and to get access to all the features.
@@ -30,6 +30,7 @@ describe Ohai::System, "Linux virtualization platform" do
30
30
  allow(File).to receive(:exist?).with("/proc/modules").and_return(false)
31
31
  allow(File).to receive(:exist?).with("/proc/cpuinfo").and_return(false)
32
32
  allow(File).to receive(:exist?).with("/usr/sbin/dmidecode").and_return(false)
33
+ allow(File).to receive(:exist?).with("/var/lib/hyperv/.kvp_pool_3").and_return(false)
33
34
  allow(File).to receive(:exist?).with("/proc/self/status").and_return(false)
34
35
  allow(File).to receive(:exist?).with("/proc/bc/0").and_return(false)
35
36
  allow(File).to receive(:exist?).with("/proc/vz").and_return(false)
@@ -384,6 +385,18 @@ VEERTU
384
385
  end
385
386
  end
386
387
 
388
+ describe "when we are checking for Hyper-V guest and the hostname of the host" do
389
+ it "sets Hyper-V guest if /var/lib/hyperv/.kvp_pool_3 contains hyper_v.example.com" do
390
+ expect(File).to receive(:exist?).with("/var/lib/hyperv/.kvp_pool_3").and_return(true)
391
+ allow(File).to receive(:read).with("/var/lib/hyperv/.kvp_pool_3").and_return("HostNamehyper_v.example.comHostingSystemEditionId")
392
+ plugin.run
393
+ expect(plugin[:virtualization][:system]).to eq("hyperv")
394
+ expect(plugin[:virtualization][:role]).to eq("guest")
395
+ expect(plugin[:virtualization][:systems]["hyperv"]).to eq("guest")
396
+ expect(plugin[:virtualization]["hypervisor_host"]).to eq("hyper_v.example.com")
397
+ end
398
+ end
399
+
387
400
  describe "when we are checking for Linux-VServer" do
388
401
  it "sets Linux-VServer host if /proc/self/status contains s_context: 0" do
389
402
  expect(File).to receive(:exist?).with("/proc/self/status").and_return(true)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ohai
3
3
  version: !ruby/object:Gem::Version
4
- version: 14.6.2
4
+ version: 14.8.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Jacob
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-10-10 00:00:00.000000000 Z
11
+ date: 2018-12-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: systemu
@@ -185,7 +185,6 @@ extra_rdoc_files: []
185
185
  files:
186
186
  - Gemfile
187
187
  - LICENSE
188
- - README.md
189
188
  - Rakefile
190
189
  - bin/ohai
191
190
  - lib/ohai.rb
@@ -335,32 +334,13 @@ files:
335
334
  - lib/ohai/util/win32/group_helper.rb
336
335
  - lib/ohai/version.rb
337
336
  - ohai.gemspec
338
- - spec/data/plugins/___lib64___libc.so.6.output
339
- - spec/data/plugins/___lib___libc.so.6.output
340
- - spec/data/plugins/cc.output
341
- - spec/data/plugins/cl.output
342
- - spec/data/plugins/devenv.com.output
343
337
  - spec/data/plugins/dpkg-query.output
344
- - spec/data/plugins/env.output
345
- - spec/data/plugins/erl.output
346
- - spec/data/plugins/gcc.output
347
- - spec/data/plugins/groovy.output
348
- - spec/data/plugins/java.output
349
338
  - spec/data/plugins/lslpp.output
350
- - spec/data/plugins/lua.output
351
- - spec/data/plugins/node.output
352
339
  - spec/data/plugins/pacman.output
353
- - spec/data/plugins/perl.output
354
- - spec/data/plugins/php.output
355
340
  - spec/data/plugins/pkg-query.output
356
341
  - spec/data/plugins/pkginfo.output
357
342
  - spec/data/plugins/pkglist.output
358
- - spec/data/plugins/python.output
359
343
  - spec/data/plugins/rpmquery.output
360
- - spec/data/plugins/uname.output
361
- - spec/data/plugins/v7message.rb
362
- - spec/data/plugins/what.output
363
- - spec/data/plugins/xlc.output
364
344
  - spec/functional/application_spec.rb
365
345
  - spec/functional/loader_spec.rb
366
346
  - spec/functional/plugins/powershell_spec.rb
@@ -510,7 +490,7 @@ files:
510
490
  - spec/unit/system_spec.rb
511
491
  - spec/unit/util/file_helper_spec.rb
512
492
  - spec/unit/util/ip_helper_spec.rb
513
- homepage: https://docs.chef.io/ohai.html
493
+ homepage: https://github.com/chef/ohai/
514
494
  licenses:
515
495
  - Apache-2.0
516
496
  metadata: {}
data/README.md DELETED
@@ -1,88 +0,0 @@
1
- # ohai
2
-
3
- [![Build Status Master](https://travis-ci.org/chef/ohai.svg?branch=master)](https://travis-ci.org/chef/ohai) [![Build Status Master](https://ci.appveyor.com/api/projects/status/github/chef/ohai?branch=master&svg=true&passingText=master%20-%20Ok&pendingText=master%20-%20Pending&failingText=master%20-%20Failing)](https://ci.appveyor.com/project/Chef/ohai/branch/master) [![Gem Version](https://badge.fury.io/rb/ohai.svg)](https://badge.fury.io/rb/ohai)
4
-
5
- ## Description
6
-
7
- Ohai detects data about your operating system. It can be used standalone, but its primary purpose is to provide node data to Chef.
8
-
9
- Ohai will print out a JSON data blob for all the known data about your system. When used with Chef, that data is reported back via node attributes.
10
-
11
- Chef distributes ohai as a RubyGem. This README is for developers who want to modify the Ohai source code. For users who want to write plugins for Ohai, see the docs:
12
-
13
- - General documentation: <https://docs.chef.io/ohai.html>
14
- - Writing Ohai Plugins documentation: <https://docs.chef.io/ohai_custom.html>
15
-
16
- ## Development Environment:
17
-
18
- Ohai's development dependencies should be installed with bundler. Just run `bundle install` in the root of the repo.
19
-
20
- ## Spec Testing:
21
-
22
- We use RSpec for unit/spec tests. To run the full suite, run:
23
-
24
- ```
25
- bundle exec rake spec
26
- ```
27
-
28
- You can run individual test files by running the rspec executable:
29
-
30
- ```
31
- bundle exec rspec spec/unit/FILE.rb
32
- ```
33
-
34
- ## Rake Tasks
35
-
36
- Ohai has some Rake tasks for doing various things.
37
-
38
- ```
39
- rake -T
40
- rake build # Build ohai-$VERSION.gem into the pkg directory
41
- rake clean # Remove any temporary products
42
- rake clobber # Remove any generated files
43
- rake docs # Generate YARD Documentation
44
- rake install # Build and install ohai-$VERSION.gem into system gems
45
- rake install:local # Build and install ohai-$VERSION.gem into system gems without network access
46
- rake release[remote] # Create tag $VERSION and build and push ohai-$VERSION.gem to rubygems.org
47
- rake spec # Run RSpec code examples
48
- rake style # Run Chefstyle tests
49
- rake style:auto_correct # Auto-correct RuboCop offenses
50
-
51
- ($VERSION is the current version, from the GemSpec in Rakefile)
52
- ```
53
-
54
- ## Links:
55
-
56
- Source:
57
-
58
- - <https://github.com/chef/ohai/tree/master>
59
-
60
- Issues:
61
-
62
- - <https://github.com/chef/ohai/issues>
63
-
64
- ## Contributing
65
-
66
- For information on contributing to this project see <https://github.com/chef/chef/blob/master/CONTRIBUTING.md>
67
-
68
- ## License
69
-
70
- Ohai - system information application
71
-
72
- - Author:: Adam Jacob ([adam@chef.io](mailto:adam@chef.io))
73
- - Copyright:: Copyright (c) 2008-2018 Chef Software, Inc.
74
- - License:: Apache License, Version 2.0
75
-
76
- ```text
77
- Licensed under the Apache License, Version 2.0 (the "License");
78
- you may not use this file except in compliance with the License.
79
- You may obtain a copy of the License at
80
-
81
- http://www.apache.org/licenses/LICENSE-2.0
82
-
83
- Unless required by applicable law or agreed to in writing, software
84
- distributed under the License is distributed on an "AS IS" BASIS,
85
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
86
- See the License for the specific language governing permissions and
87
- limitations under the License.
88
- ```
@@ -1,135 +0,0 @@
1
- platform "centos-5.5"
2
- arch "x64"
3
- env []
4
- params ""
5
- stdout "GNU C Library stable release version 2.5, by Roland McGrath et al.\nCopyright (C) 2006 Free Software Foundation, Inc.\nThis is free software; see the source for copying conditions.\nThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE.\nCompiled by GNU CC version 4.1.2 20080704 (Red Hat 4.1.2-46).\nCompiled on a Linux 2.6.9 system on 2010-03-31.\nAvailable extensions:\n\tThe C stubs add-on version 2.1.2.\n\tcrypt add-on version 2.1 by Michael Glad and others\n\tGNU Libidn by Simon Josefsson\n\tGNU libio by Per Bothner\n\tNIS(YP)/NIS+ NSS modules 0.19 by Thorsten Kukuk\n\tNative POSIX Threads Library by Ulrich Drepper et al\n\tBIND-8.2.3-T5B\n\tRT using linux kernel aio\nThread-local storage support included.\nFor bug reporting instructions, please see:\n<http://www.gnu.org/software/libc/bugs.html>.\n"
6
- stderr ""
7
- exit_status 0
8
-
9
- platform "centos-6.2"
10
- arch "x86"
11
- env []
12
- params ""
13
- stdout ""
14
- stderr "command not found"
15
- exit_status 127
16
-
17
- platform "centos-6.2"
18
- arch "x64"
19
- env []
20
- params ""
21
- stdout "GNU C Library stable release version 2.12, by Roland McGrath et al.\nCopyright (C) 2010 Free Software Foundation, Inc.\nThis is free software; see the source for copying conditions.\nThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE.\nCompiled by GNU CC version 4.4.6 20110731 (Red Hat 4.4.6-3).\nCompiled on a Linux 2.6.32 system on 2011-12-06.\nAvailable extensions:\n\tThe C stubs add-on version 2.1.2.\n\tcrypt add-on version 2.1 by Michael Glad and others\n\tGNU Libidn by Simon Josefsson\n\tNative POSIX Threads Library by Ulrich Drepper et al\n\tBIND-8.2.3-T5B\n\tRT using linux kernel aio\nlibc ABIs: UNIQUE IFUNC\nFor bug reporting instructions, please see:\n<http://www.gnu.org/software/libc/bugs.html>.\n"
22
- stderr ""
23
- exit_status 0
24
-
25
- platform "ubuntu-10.04"
26
- arch "x86"
27
- env []
28
- params ""
29
- stdout ""
30
- stderr "command not found"
31
- exit_status 127
32
-
33
- platform "ubuntu-10.04"
34
- arch "x64"
35
- env []
36
- params ""
37
- stdout "GNU C Library (Ubuntu EGLIBC 2.11.1-0ubuntu7.12) stable release version 2.11.1, by Roland McGrath et al.\nCopyright (C) 2009 Free Software Foundation, Inc.\nThis is free software; see the source for copying conditions.\nThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE.\nCompiled by GNU CC version 4.4.3.\nCompiled on a Linux >>3.2.0-23-generic<< system on 2012-11-15.\nAvailable extensions:\n\tcrypt add-on version 2.1 by Michael Glad and others\n\tGNU Libidn by Simon Josefsson\n\tNative POSIX Threads Library by Ulrich Drepper et al\n\tBIND-8.2.3-T5B\nFor bug reporting instructions, please see:\n<http://www.debian.org/Bugs/>.\n"
38
- stderr ""
39
- exit_status 0
40
-
41
- platform "ubuntu-12.04"
42
- arch "x86"
43
- env []
44
- params ""
45
- stdout ""
46
- stderr "command not found"
47
- exit_status 127
48
-
49
- platform "ubuntu-12.04"
50
- arch "x64"
51
- env []
52
- params ""
53
- stdout ""
54
- stderr "command not found"
55
- exit_status 127
56
-
57
- platform "ubuntu-12.10"
58
- arch "x64"
59
- env []
60
- params ""
61
- stdout ""
62
- stderr "command not found"
63
- exit_status 127
64
-
65
- platform "ubuntu-13.04"
66
- arch "x86"
67
- env []
68
- params ""
69
- stdout ""
70
- stderr "command not found"
71
- exit_status 127
72
-
73
- platform "ubuntu-13.04"
74
- arch "x64"
75
- env []
76
- params ""
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 ""
85
- stdout "GNU C Library stable release version 2.5, by Roland McGrath et al.\nCopyright (C) 2006 Free Software Foundation, Inc.\nThis is free software; see the source for copying conditions.\nThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE.\nCompiled by GNU CC version 4.1.2 20080704 (Red Hat 4.1.2-46).\nCompiled on a Linux 2.6.9 system on 2010-03-31.\nAvailable extensions:\n\tThe C stubs add-on version 2.1.2.\n\tcrypt add-on version 2.1 by Michael Glad and others\n\tGNU Libidn by Simon Josefsson\n\tGNU libio by Per Bothner\n\tNIS(YP)/NIS+ NSS modules 0.19 by Thorsten Kukuk\n\tNative POSIX Threads Library by Ulrich Drepper et al\n\tBIND-8.2.3-T5B\n\tRT using linux kernel aio\nThread-local storage support included.\nFor bug reporting instructions, please see:\n<http://www.gnu.org/software/libc/bugs.html>.\n"
86
- stderr ""
87
- exit_status 0
88
-
89
- platform "centos-6.2"
90
- arch "x86"
91
- env ["gcc"]
92
- params ""
93
- stdout ""
94
- stderr "command not found"
95
- exit_status 127
96
-
97
- platform "centos-6.2"
98
- arch "x64"
99
- env ["gcc"]
100
- params ""
101
- stdout "GNU C Library stable release version 2.12, by Roland McGrath et al.\nCopyright (C) 2010 Free Software Foundation, Inc.\nThis is free software; see the source for copying conditions.\nThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE.\nCompiled by GNU CC version 4.4.6 20110731 (Red Hat 4.4.6-3).\nCompiled on a Linux 2.6.32 system on 2011-12-06.\nAvailable extensions:\n\tThe C stubs add-on version 2.1.2.\n\tcrypt add-on version 2.1 by Michael Glad and others\n\tGNU Libidn by Simon Josefsson\n\tNative POSIX Threads Library by Ulrich Drepper et al\n\tBIND-8.2.3-T5B\n\tRT using linux kernel aio\nlibc ABIs: UNIQUE IFUNC\nFor bug reporting instructions, please see:\n<http://www.gnu.org/software/libc/bugs.html>.\n"
102
- stderr ""
103
- exit_status 0
104
-
105
- platform "ubuntu-10.04"
106
- arch "x86"
107
- env ["gcc"]
108
- params ""
109
- stdout ""
110
- stderr "command not found"
111
- exit_status 127
112
-
113
- platform "ubuntu-10.04"
114
- arch "x64"
115
- env ["gcc"]
116
- params ""
117
- stdout "GNU C Library (Ubuntu EGLIBC 2.11.1-0ubuntu7.12) stable release version 2.11.1, by Roland McGrath et al.\nCopyright (C) 2009 Free Software Foundation, Inc.\nThis is free software; see the source for copying conditions.\nThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE.\nCompiled by GNU CC version 4.4.3.\nCompiled on a Linux >>3.2.0-23-generic<< system on 2012-11-15.\nAvailable extensions:\n\tcrypt add-on version 2.1 by Michael Glad and others\n\tGNU Libidn by Simon Josefsson\n\tNative POSIX Threads Library by Ulrich Drepper et al\n\tBIND-8.2.3-T5B\nFor bug reporting instructions, please see:\n<http://www.debian.org/Bugs/>.\n"
118
- stderr ""
119
- exit_status 0
120
-
121
- platform "ubuntu-12.04"
122
- arch "x86"
123
- env ["gcc"]
124
- params ""
125
- stdout ""
126
- stderr "command not found"
127
- exit_status 127
128
-
129
- platform "ubuntu-12.04"
130
- arch "x64"
131
- env ["gcc"]
132
- params ""
133
- stdout ""
134
- stderr "command not found"
135
- exit_status 127
@@ -1,135 +0,0 @@
1
- platform "centos-5.5"
2
- arch "x64"
3
- env []
4
- params ""
5
- stdout "GNU C Library stable release version 2.5, by Roland McGrath et al.\nCopyright (C) 2006 Free Software Foundation, Inc.\nThis is free software; see the source for copying conditions.\nThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE.\nCompiled by GNU CC version 4.1.2 20080704 (Red Hat 4.1.2-48).\nCompiled on a Linux 2.6.9 system on 2010-04-02.\nAvailable extensions:\n\tThe C stubs add-on version 2.1.2.\n\tcrypt add-on version 2.1 by Michael Glad and others\n\tGNU Libidn by Simon Josefsson\n\tGNU libio by Per Bothner\n\tNIS(YP)/NIS+ NSS modules 0.19 by Thorsten Kukuk\n\tNative POSIX Threads Library by Ulrich Drepper et al\n\tBIND-8.2.3-T5B\n\tRT using linux kernel aio\nThread-local storage support included.\nFor bug reporting instructions, please see:\n<http://www.gnu.org/software/libc/bugs.html>.\n"
6
- stderr ""
7
- exit_status 0
8
-
9
- platform "centos-6.2"
10
- arch "x86"
11
- env []
12
- params ""
13
- stdout "GNU C Library stable release version 2.12, by Roland McGrath et al.\nCopyright (C) 2010 Free Software Foundation, Inc.\nThis is free software; see the source for copying conditions.\nThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE.\nCompiled by GNU CC version 4.4.6 20110731 (Red Hat 4.4.6-3).\nCompiled on a Linux 2.6.32 system on 2011-12-06.\nAvailable extensions:\n\tThe C stubs add-on version 2.1.2.\n\tcrypt add-on version 2.1 by Michael Glad and others\n\tGNU Libidn by Simon Josefsson\n\tNative POSIX Threads Library by Ulrich Drepper et al\n\tBIND-8.2.3-T5B\n\tRT using linux kernel aio\nlibc ABIs: UNIQUE IFUNC\nFor bug reporting instructions, please see:\n<http://www.gnu.org/software/libc/bugs.html>.\n"
14
- stderr ""
15
- exit_status 0
16
-
17
- platform "centos-6.2"
18
- arch "x64"
19
- env []
20
- params ""
21
- stdout ""
22
- stderr "command not found"
23
- exit_status 127
24
-
25
- platform "ubuntu-10.04"
26
- arch "x86"
27
- env []
28
- params ""
29
- stdout "GNU C Library (Ubuntu EGLIBC 2.11.1-0ubuntu7.12) stable release version 2.11.1, by Roland McGrath et al.\nCopyright (C) 2009 Free Software Foundation, Inc.\nThis is free software; see the source for copying conditions.\nThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE.\nCompiled by GNU CC version 4.4.3.\nCompiled on a Linux >>3.2.0-23-generic<< system on 2012-11-15.\nAvailable extensions:\n\tcrypt add-on version 2.1 by Michael Glad and others\n\tGNU Libidn by Simon Josefsson\n\tNative POSIX Threads Library by Ulrich Drepper et al\n\tBIND-8.2.3-T5B\nFor bug reporting instructions, please see:\n<http://www.debian.org/Bugs/>.\n"
30
- stderr ""
31
- exit_status 0
32
-
33
- platform "ubuntu-10.04"
34
- arch "x64"
35
- env []
36
- params ""
37
- stdout "GNU C Library (Ubuntu EGLIBC 2.11.1-0ubuntu7.12) stable release version 2.11.1, by Roland McGrath et al.\nCopyright (C) 2009 Free Software Foundation, Inc.\nThis is free software; see the source for copying conditions.\nThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE.\nCompiled by GNU CC version 4.4.3.\nCompiled on a Linux >>3.2.0-23-generic<< system on 2012-11-15.\nAvailable extensions:\n\tcrypt add-on version 2.1 by Michael Glad and others\n\tGNU Libidn by Simon Josefsson\n\tNative POSIX Threads Library by Ulrich Drepper et al\n\tBIND-8.2.3-T5B\nFor bug reporting instructions, please see:\n<http://www.debian.org/Bugs/>.\n"
38
- stderr ""
39
- exit_status 0
40
-
41
- platform "ubuntu-12.04"
42
- arch "x86"
43
- env []
44
- params ""
45
- stdout ""
46
- stderr "command not found"
47
- exit_status 127
48
-
49
- platform "ubuntu-12.04"
50
- arch "x64"
51
- env []
52
- params ""
53
- stdout ""
54
- stderr "command not found"
55
- exit_status 127
56
-
57
- platform "ubuntu-12.10"
58
- arch "x64"
59
- env []
60
- params ""
61
- stdout ""
62
- stderr "command not found"
63
- exit_status 127
64
-
65
- platform "ubuntu-13.04"
66
- arch "x86"
67
- env []
68
- params ""
69
- stdout ""
70
- stderr "command not found"
71
- exit_status 127
72
-
73
- platform "ubuntu-13.04"
74
- arch "x64"
75
- env []
76
- params ""
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 ""
85
- stdout "GNU C Library stable release version 2.5, by Roland McGrath et al.\nCopyright (C) 2006 Free Software Foundation, Inc.\nThis is free software; see the source for copying conditions.\nThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE.\nCompiled by GNU CC version 4.1.2 20080704 (Red Hat 4.1.2-48).\nCompiled on a Linux 2.6.9 system on 2010-04-02.\nAvailable extensions:\n\tThe C stubs add-on version 2.1.2.\n\tcrypt add-on version 2.1 by Michael Glad and others\n\tGNU Libidn by Simon Josefsson\n\tGNU libio by Per Bothner\n\tNIS(YP)/NIS+ NSS modules 0.19 by Thorsten Kukuk\n\tNative POSIX Threads Library by Ulrich Drepper et al\n\tBIND-8.2.3-T5B\n\tRT using linux kernel aio\nThread-local storage support included.\nFor bug reporting instructions, please see:\n<http://www.gnu.org/software/libc/bugs.html>.\n"
86
- stderr ""
87
- exit_status 0
88
-
89
- platform "centos-6.2"
90
- arch "x86"
91
- env ["gcc"]
92
- params ""
93
- stdout "GNU C Library stable release version 2.12, by Roland McGrath et al.\nCopyright (C) 2010 Free Software Foundation, Inc.\nThis is free software; see the source for copying conditions.\nThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE.\nCompiled by GNU CC version 4.4.6 20110731 (Red Hat 4.4.6-3).\nCompiled on a Linux 2.6.32 system on 2011-12-06.\nAvailable extensions:\n\tThe C stubs add-on version 2.1.2.\n\tcrypt add-on version 2.1 by Michael Glad and others\n\tGNU Libidn by Simon Josefsson\n\tNative POSIX Threads Library by Ulrich Drepper et al\n\tBIND-8.2.3-T5B\n\tRT using linux kernel aio\nlibc ABIs: UNIQUE IFUNC\nFor bug reporting instructions, please see:\n<http://www.gnu.org/software/libc/bugs.html>.\n"
94
- stderr ""
95
- exit_status 0
96
-
97
- platform "centos-6.2"
98
- arch "x64"
99
- env ["gcc"]
100
- params ""
101
- stdout ""
102
- stderr "command not found"
103
- exit_status 127
104
-
105
- platform "ubuntu-10.04"
106
- arch "x86"
107
- env ["gcc"]
108
- params ""
109
- stdout "GNU C Library (Ubuntu EGLIBC 2.11.1-0ubuntu7.12) stable release version 2.11.1, by Roland McGrath et al.\nCopyright (C) 2009 Free Software Foundation, Inc.\nThis is free software; see the source for copying conditions.\nThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE.\nCompiled by GNU CC version 4.4.3.\nCompiled on a Linux >>3.2.0-23-generic<< system on 2012-11-15.\nAvailable extensions:\n\tcrypt add-on version 2.1 by Michael Glad and others\n\tGNU Libidn by Simon Josefsson\n\tNative POSIX Threads Library by Ulrich Drepper et al\n\tBIND-8.2.3-T5B\nFor bug reporting instructions, please see:\n<http://www.debian.org/Bugs/>.\n"
110
- stderr ""
111
- exit_status 0
112
-
113
- platform "ubuntu-10.04"
114
- arch "x64"
115
- env ["gcc"]
116
- params ""
117
- stdout "GNU C Library (Ubuntu EGLIBC 2.11.1-0ubuntu7.12) stable release version 2.11.1, by Roland McGrath et al.\nCopyright (C) 2009 Free Software Foundation, Inc.\nThis is free software; see the source for copying conditions.\nThere is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE.\nCompiled by GNU CC version 4.4.3.\nCompiled on a Linux >>3.2.0-23-generic<< system on 2012-11-15.\nAvailable extensions:\n\tcrypt add-on version 2.1 by Michael Glad and others\n\tGNU Libidn by Simon Josefsson\n\tNative POSIX Threads Library by Ulrich Drepper et al\n\tBIND-8.2.3-T5B\nFor bug reporting instructions, please see:\n<http://www.debian.org/Bugs/>.\n"
118
- stderr ""
119
- exit_status 0
120
-
121
- platform "ubuntu-12.04"
122
- arch "x86"
123
- env ["gcc"]
124
- params ""
125
- stdout ""
126
- stderr "command not found"
127
- exit_status 127
128
-
129
- platform "ubuntu-12.04"
130
- arch "x64"
131
- env ["gcc"]
132
- params ""
133
- stdout ""
134
- stderr "command not found"
135
- exit_status 127