This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
============ Test =============== | |
require 'run_loop' | |
def compare(a, b) | |
a = RunLoop::Version.new(a) | |
b = RunLoop::Version.new(b) | |
if a < b | |
puts "#{a} < #{b}" | |
elsif a > b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# | |
# Script combines given JUnit XML files into one. | |
# | |
# Script assumes that file begins with XML header. | |
# Script will copy content between <testsuite> tags | |
# to new file with XML header and <testsuites> tags. | |
# Script will not affect original files, but it will | |
# overwrite output file contents. Script searches all |