diff options
| author | Luke Kanies <luke@madstop.com> | 2007-11-08 19:00:06 -0600 |
|---|---|---|
| committer | Luke Kanies <luke@madstop.com> | 2007-11-08 19:00:06 -0600 |
| commit | a535cbbe148802c0afe62cd2d5b29d0768b3a0f0 (patch) | |
| tree | 74ab08155c81120c784ebfce53cc6544a7751bdf | |
| parent | 3f583dc133ce50ae34bfc151474c6d4196f803ca (diff) | |
| download | puppet-a535cbbe148802c0afe62cd2d5b29d0768b3a0f0.tar.gz puppet-a535cbbe148802c0afe62cd2d5b29d0768b3a0f0.tar.xz puppet-a535cbbe148802c0afe62cd2d5b29d0768b3a0f0.zip | |
Commenting out the time debugging I was using
| -rwxr-xr-x | test/lib/puppettest.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/lib/puppettest.rb b/test/lib/puppettest.rb index 92981b557..440ba3ba2 100755 --- a/test/lib/puppettest.rb +++ b/test/lib/puppettest.rb @@ -196,7 +196,7 @@ module PuppetTest Puppet[:ignoreschedules] = true - @start = Time.now + #@start = Time.now end def tempfile @@ -246,8 +246,8 @@ module PuppetTest end def teardown - @stop = Time.now - File.open("/tmp/test_times.log", ::File::WRONLY|::File::CREAT|::File::APPEND) { |f| f.puts "%0.4f %s %s" % [@stop - @start, @method_name, self.class] } + #@stop = Time.now + #File.open("/tmp/test_times.log", ::File::WRONLY|::File::CREAT|::File::APPEND) { |f| f.puts "%0.4f %s %s" % [@stop - @start, @method_name, self.class] } @@cleaners.each { |cleaner| cleaner.call() } @@tmpfiles.each { |file| |
