diff options
author | luke <luke@1f5c1d6a-bddf-0310-8f58-fc49e503516a> | 2006-09-22 05:24:06 +0000 |
---|---|---|
committer | luke <luke@1f5c1d6a-bddf-0310-8f58-fc49e503516a> | 2006-09-22 05:24:06 +0000 |
commit | ca498a28df534f29ae944b644cf913b8efe5581e (patch) | |
tree | 90b149916acd858ee532fb8d832995b219ab373a | |
parent | d75744b5bc40d8f26bff72f8b8738fc41b7f8a24 (diff) | |
download | facter-ca498a28df534f29ae944b644cf913b8efe5581e.tar.gz facter-ca498a28df534f29ae944b644cf913b8efe5581e.tar.xz facter-ca498a28df534f29ae944b644cf913b8efe5581e.zip |
updating changelog for 1.3.4
git-svn-id: http://reductivelabs.com/svn/facter/trunk@172 1f5c1d6a-bddf-0310-8f58-fc49e503516a
-rw-r--r-- | CHANGELOG | 9 | ||||
-rwxr-xr-x | tests/tc_facterbin.rb | 2 |
2 files changed, 10 insertions, 1 deletions
@@ -1,7 +1,14 @@ +1.3.4: + Added many new facts, including LSB facts. + + Fixed a few small bugs, notably the error you could get when asking + for a non-existent fact. + 1.3.3: Added thread exclusivity to memory and processor facts. - Added the ability to retrieve facts by pulling them out of the shell environment. + Added the ability to retrieve facts by pulling them out of the shell + environment. 1.3.2: Temporarily disabled memory and processor facts since they might cause hangs. diff --git a/tests/tc_facterbin.rb b/tests/tc_facterbin.rb index 9d9ca15..85f8df1 100755 --- a/tests/tc_facterbin.rb +++ b/tests/tc_facterbin.rb @@ -75,6 +75,8 @@ class TestFacterBin < Test::Unit::TestCase assert_instance_of(Hash, result) result.each do |name, value| + # These change too frequently. + next if name.to_s.downcase =~ /mem/ assert_equal(value, Facter.value(name)) end end |