test/app_test_methods.rb in ruboto-1.1.2 vs test/app_test_methods.rb in ruboto-1.2.0

- old
+ new

@@ -36,9 +36,17 @@ end end def run_activity_tests(activity_dir) Dir[File.expand_path("#{activity_dir}/*", File.dirname(__FILE__))].each do |file| + # FIXME(uwe): Remove when we stop testing JRuby < 1.7.14 + next if file =~ /rss/ && (JRUBY_JARS_VERSION < Gem::Version.new('1.7.14.dev')) + # EMXIF + + # FIXME(uwe): Remove when we release RubotoCore based on JRuby 1.7.14 + next if file =~ /rss/ && (RUBOTO_PLATFORM == 'CURRENT' || RUBOTO_PLATFORM == 'FROM_GEM') + # EMXIF + # FIXME(uwe): Remove when we stop testing api level < 16 # FIXME(uwe): Remove when we release RubotoCore with SSL included next if file =~ /ssl/ && (ANDROID_OS < 16 || RUBOTO_PLATFORM == 'CURRENT' || RUBOTO_PLATFORM == 'FROM_GEM' || JRUBY_JARS_VERSION < Gem::Version.new('1.7.13') ||