diff --git a/ChangeLog b/ChangeLog index 4e0c6cd961..d2ae790944 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Fri Aug 16 18:09:20 2013 Koichi Sasada + + * test/profile_test_all.rb: remove space characters from test names. + Fri Aug 16 17:32:02 2013 Koichi Sasada * test/profile_test_all.rb: refactoring memory profiling tool for diff --git a/test/profile_test_all.rb b/test/profile_test_all.rb index a24555a344..75c3ca8bba 100644 --- a/test/profile_test_all.rb +++ b/test/profile_test_all.rb @@ -65,7 +65,7 @@ class MiniTest::Unit::TestCase end def memprofile_test_all_result_result - result = ["#{self.class}\##{self.__name__}"] + result = ["#{self.class}\##{self.__name__.to_s.gsub(/\s+/, '')}"] TEST_ALL_PROFILE_PROCS.each{|proc| proc.call(result) }