From 92c15a3336e83cffa033ec95f99c679f517f7208 Mon Sep 17 00:00:00 2001 From: Watson Date: Fri, 24 Oct 2014 16:25:09 +0900 Subject: [PATCH] [test] specify working directory path in SIM_STDOUT_PATH/SIM_STDERR_PATH for CI Looks like the spec result does not output properly with Xcode 6.1 if use '/tmp/xxxx' path for SIM_STDOUT_PATH/SIM_STDERR_PATH --- test/test/Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test/Rakefile b/test/test/Rakefile index 44b3d9b0..7ae9347e 100644 --- a/test/test/Rakefile +++ b/test/test/Rakefile @@ -151,7 +151,7 @@ end # https://wiki.jenkins-ci.org/display/JENKINS/Administering+Jenkins # if ENV['JENKINS_HOME'] && ENV['PLATFORM'] == 'ios' - stdout, stderr = '/tmp/sim-stdout.log', '/tmp/sim-stderr.log' + stdout, stderr = "#{Dir.pwd}/sim-stdout.log", "#{Dir.pwd}/sim-stderr.log" task :create_ci_output_files do [stdout, stderr].each do |file| FileUtils.rm(file) if File.exist?(file)