-#- rexml sanity check (bugs in ruby 1.8.4, ruby 1.8.6)
-xmldoc = Document.new("<test/>")
-xmldoc << XMLDecl.new(XMLDecl::DEFAULT_VERSION, "UTF-8")
-content = ['61c3a927223c3e26'].pack("H*") #- is some UTF-8 text but just to make sure my editor won't magically convert..
-xmldoc.root.add_attribute('attr', content)
-out = []
-xmldoc.write(out, 0)
-
-xmldoc = REXML::Document.new(out.join)
-sanity1 = xmldoc.root.attributes['attr']
-out = []
-xmldoc.write(out, 0)
-
-xmldoc = REXML::Document.new(out.join)
-sanity2 = xmldoc.root.attributes['attr']
-out = []
-xmldoc.write(out, 0)
-
-msg 3, "REXML sanity outcome: sanity1=#{sanity1}, sanity2=#{sanity2}"
-
-if sanity1 != sanity2
- puts _("REXML sanity check failed (this is normal with unpatched ruby-1.8.4 or ruby-1.8.6, which ship a broken REXML). For safeness, won't proceed.")
- exit 1
-end
-
-
-#- rexml sanity check again (bug in ruby 1.8.6-p111)
-xmldoc = Document.new "<booh/>"
-xmldoc << XMLDecl.new(XMLDecl::DEFAULT_VERSION, 'UTF-8')
-elem = xmldoc.root.add_element('elem')
-elem.add_text('cdata')
-tmp = Tempfile.new("sanitytemp")
-tmp.close!
-ios = File.open(sanity_filename = tmp.path, File::RDWR|File::CREAT|File::EXCL)
-xmldoc.write(ios, 0)
-ios.close
-
-xmldoc = Document.new(File.new(sanity_filename))
-File.delete(sanity_filename)
-if xmldoc.root.elements['elem'].get_text.value != 'cdata'
- puts _("REXML sanity check failed (this is normal with unpatched ruby-1.8.6-p111, which ships a broken REXML). For safeness, won't proceed.")
- puts "Notice for bug reporting: REXML has version: #{REXML::VERSION} at date: #{REXML::DATE}."
- exit 1
-end
-
-