sprout 1.1.2.pre → 1.1.3.pre

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of sprout might be problematic. Click here for more details.

data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.2.pre
1
+ 1.1.3.pre
data/lib/sprout/daemon.rb CHANGED
@@ -202,21 +202,18 @@ module Sprout
202
202
  # collected.
203
203
  def wait_for_prompt expected_prompt=nil
204
204
  expected_prompt = expected_prompt || prompt
205
- line = ''
206
205
 
207
- while process_runner.alive? do
208
- #puts ">> ERROR #{process_runner.readpartial_err 1}"
206
+ fake_stderr = Sprout::OutputBuffer.new
207
+ fake_stdout = Sprout::OutputBuffer.new
208
+ stderr = read_from process_runner.e, fake_stderr
209
+ stdout = read_from process_runner.r, fake_stdout, expected_prompt
210
+ stdout.join && stderr.kill
209
211
 
210
- return false if process_runner.r.eof?
211
- char = process_runner.readpartial 1
212
- line << char
213
- if char == "\n"
214
- line = ''
215
- end
216
- Sprout.stdout.printf char
217
- Sprout.stdout.flush
218
- return true unless line.match(expected_prompt).nil?
219
- end
212
+ stdout_str = fake_stdout.read
213
+ stderr_str = fake_stderr.read
214
+
215
+ Sprout.stderr.printf(stderr_str)
216
+ Sprout.stdout.printf(stdout_str)
220
217
  end
221
218
 
222
219
  ##
@@ -233,6 +230,45 @@ module Sprout
233
230
 
234
231
  protected
235
232
 
233
+ ##
234
+ # This is the ass-hattery that we need to go
235
+ # through in order to read from stderr and
236
+ # stdout from a long-running process without
237
+ # eternally blocking the parent - and providing
238
+ # the ability to asynchronously write into the
239
+ # input stream.
240
+ #
241
+ # If you know how to better do this accross
242
+ # platforms (mac, win and nix) without losing
243
+ # information (i.e. combining stderr and stdout
244
+ # into a single stream), I'm all ears!
245
+ def read_from pipe, to, until_prompt=nil
246
+ line = ''
247
+ lines = ''
248
+ Thread.new do
249
+ Thread.current.abort_on_exception = true
250
+ while true do
251
+ break if pipe.eof?
252
+ char = pipe.readpartial 1
253
+ line << char
254
+ if char == "\n"
255
+ to.puts line
256
+ to.flush
257
+ lines << line
258
+ line = ''
259
+ end
260
+ if !until_prompt.nil? && line.match(until_prompt)
261
+ lines << line
262
+ to.printf line
263
+ to.flush
264
+ line = ''
265
+ break
266
+ end
267
+ end
268
+ lines
269
+ end
270
+ end
271
+
236
272
  def process_launched?
237
273
  @process_launched
238
274
  end
@@ -286,7 +322,7 @@ module Sprout
286
322
  # Execute a single action.
287
323
  def execute_action action, silence=false
288
324
  action = action.strip
289
- Sprout.stdout.puts(action) unless silence
325
+ Sprout.stdout.puts("#{action}\n") unless silence
290
326
  process_runner.puts action
291
327
  wait_for_prompt
292
328
  end
@@ -1,7 +1,7 @@
1
1
 
2
2
  module Sprout
3
3
 
4
- class OutputBuffer < Logger
4
+ class OutputBuffer < String
5
5
 
6
6
  def initialize *args
7
7
  super
@@ -9,25 +9,24 @@ module Sprout
9
9
  end
10
10
 
11
11
  def puts msg
12
- flush if @characters.size > 0
13
- info msg
12
+ @characters << msg
14
13
  end
15
14
 
16
15
  def print msg
17
16
  @characters << msg
18
- flush
19
17
  end
20
18
 
21
19
  def printf msg
22
20
  @characters << msg
23
- flush
21
+ end
22
+
23
+ def read
24
+ response = @characters
25
+ @characters = ''
26
+ response
24
27
  end
25
28
 
26
29
  def flush
27
- if @characters.match /\n/
28
- info @characters
29
- @characters = ''
30
- end
31
30
  end
32
31
 
33
32
  end
@@ -60,7 +60,7 @@ module Sprout
60
60
 
61
61
  ##
62
62
  # Execute the provided command using the win32-open3
63
- # library. This is generally used only only Windows
63
+ # library. This should only be used on Windows
64
64
  # systems (even 64 bit).
65
65
  def execute_win32(*command)
66
66
  execute_with_block *command do
@@ -100,6 +100,7 @@ module Sprout::System
100
100
  def execute_thread(tool, options='')
101
101
  runner = nil
102
102
  Thread.new do
103
+ Thread.current.abort_on_exception = true
103
104
  runner = execute_silent(tool, options)
104
105
  end
105
106
  # Wait for the runner to be created
@@ -62,6 +62,13 @@ module Sprout::TestHelper
62
62
  # working directory before the test method runs.
63
63
  def setup
64
64
  super
65
+
66
+ # Prevent log messages from interrupting test output,
67
+ # and create a pipe that test cases can read to ensure
68
+ # user output is provided properly.
69
+ Sprout.stdout = Sprout::OutputBuffer.new
70
+ Sprout.stderr = Sprout::OutputBuffer.new
71
+
65
72
  @start_path = Dir.pwd
66
73
  end
67
74
 
@@ -424,9 +431,5 @@ end
424
431
  # bare_setup - place this in setup method to create the app_root folder for each test
425
432
  # bare_teardown - place this in teardown method to destroy the TMP_ROOT or app_root folder after each test
426
433
 
427
- # Prevent log messages from interrupting the test output:
428
- Sprout.stdout = Sprout.stdout_test
429
- Sprout.stderr = Sprout.stderr_test
430
-
431
434
  #Sprout::ProgressBar.debug = true
432
435
 
data/lib/sprout.rb CHANGED
@@ -104,10 +104,6 @@ module Sprout
104
104
  @stdout ||= $stdout
105
105
  end
106
106
 
107
- def stdout_test
108
- OutputBuffer.new 'test-stdout.log'
109
- end
110
-
111
107
  def stderr=(err)
112
108
  @stderr = err
113
109
  end
@@ -116,10 +112,6 @@ module Sprout
116
112
  @stderr ||= $stderr
117
113
  end
118
114
 
119
- def stderr_test
120
- OutputBuffer.new 'test-stderr.log'
121
- end
122
-
123
115
  ##
124
116
  # @return [File] Path to the file from the 'caller' property of
125
117
  # a Ruby exception.
@@ -80,8 +80,7 @@ class FakeFDB
80
80
  end
81
81
 
82
82
  def handle_quit args
83
- str << ">> EXITING NOW!\n"
84
- puts str
83
+ puts ">> EXITING NOW!\n"
85
84
  exit! 0
86
85
  end
87
86
 
@@ -7,7 +7,13 @@ class DaemonTest < Test::Unit::TestCase
7
7
  context "a new daemon delegate" do
8
8
 
9
9
  setup do
10
- configure_fdb_fake
10
+ # Uncomment the following to see interactive sessions:
11
+ #Sprout.stdout = $stdout
12
+ #Sprout.stderr = $stderr
13
+
14
+ # Comment the following and install the flashsdk
15
+ # to run test against actual fdb:
16
+ insert_fake_executable File.join(fixtures, 'executable', 'flex3sdk_gem', 'fdb')
11
17
  end
12
18
 
13
19
  should "execute without shell params" do
@@ -41,8 +47,10 @@ class DaemonTest < Test::Unit::TestCase
41
47
  @fdb.wait # wait for actions to finish.
42
48
  end
43
49
 
44
- =begin
45
50
  should "print errors" do
51
+ ##
52
+ # Collect the messages sent to stderr:
53
+
46
54
  @fdb = Sprout::FDB.new
47
55
  # For some reason, using mocha expectations are
48
56
  # actually stubbing the methods and breaking this
@@ -52,8 +60,9 @@ class DaemonTest < Test::Unit::TestCase
52
60
  @fdb.run_with_error
53
61
  @fdb.quit
54
62
  @fdb.wait # wait for actions to finish.
63
+
64
+ assert_equal "This is an error!\nThis is more details about the error!\nHere are even more details!\n", Sprout.stderr.read
55
65
  end
56
- =end
57
66
 
58
67
  should "execute from rake task" do
59
68
  f = fdb :fdb_debug do |t|
@@ -80,14 +89,5 @@ class DaemonTest < Test::Unit::TestCase
80
89
 
81
90
  end
82
91
 
83
- private
84
-
85
- def configure_fdb_fake
86
- # Comment the following and install the flashsdk
87
- # to run test against actual fdb:
88
- @fdb_fake = File.join(fixtures, 'executable', 'flex3sdk_gem', 'fdb')
89
- path_response = OpenStruct.new(:path => @fdb_fake)
90
- Sprout::Executable.expects(:load).with(:fdb, 'flex4', '>= 4.1.0.pre').returns path_response
91
- end
92
92
  end
93
93
 
metadata CHANGED
@@ -5,9 +5,9 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 1
8
- - 2
8
+ - 3
9
9
  - pre
10
- version: 1.1.2.pre
10
+ version: 1.1.3.pre
11
11
  platform: ruby
12
12
  authors:
13
13
  - Luke Bayes
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-12-28 00:00:00 -08:00
18
+ date: 2010-12-29 00:00:00 -08:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -393,8 +393,6 @@ files:
393
393
  - test/unit/vista_system_test.rb
394
394
  - test/unit/win_nix_system_test.rb
395
395
  - test/unit/win_system_test.rb
396
- - test-stderr.log
397
- - test-stdout.log
398
396
  - VERSION
399
397
  has_rdoc: true
400
398
  homepage: http://projectsprouts.org
data/test-stderr.log DELETED
@@ -1 +0,0 @@
1
- # Logfile created on 2010-12-28 11:25:34 -0800 by logger.rb/25413
data/test-stdout.log DELETED
@@ -1,237 +0,0 @@
1
- # Logfile created on 2010-12-28 11:25:34 -0800 by logger.rb/25413
2
- I, [2010-12-28T11:26:11.887992 #27344] INFO -- : test/fixtures/executable/flex3sdk_gem/mxmlc -debug -source-path+=test/fixtures/executable/src test/fixtures/executable/src/Main.as
3
- I, [2010-12-28T11:26:11.901133 #27344] INFO -- : success
4
-
5
- I, [2010-12-28T11:26:12.162073 #27344] INFO -- : >> Created directory at: test/fixtures/library/project_lib
6
- I, [2010-12-28T11:26:12.162588 #27344] INFO -- : >> Copied files from: (test/fixtures/library/sources/src) to: (test/fixtures/library/project_lib/fake_source_lib)
7
- I, [2010-12-28T11:26:12.162914 #27344] INFO -- : >> Copied files from: (test/fixtures/library/sources/lib/a) to: (test/fixtures/library/project_lib/fake_source_lib)
8
- I, [2010-12-28T11:26:12.163244 #27344] INFO -- : >> Copied files from: (test/fixtures/library/sources/lib/b) to: (test/fixtures/library/project_lib/fake_source_lib)
9
- I, [2010-12-28T11:26:12.205181 #27344] INFO -- : Unpacking archive at test/fixtures/sprout/cache/downloaded.zip now. This can take anywhere from a few seconds to many minutes depending on your OS and the size of the archive.
10
-
11
- If you're on windows, consider using this ample time to look into improving the zip utils in Ruby...
12
- I, [2010-12-28T11:26:12.222928 #27344] INFO -- : Unpacking archive at test/fixtures/sprout/cache/downloaded.zip now. This can take anywhere from a few seconds to many minutes depending on your OS and the size of the archive.
13
-
14
- If you're on windows, consider using this ample time to look into improving the zip utils in Ruby...
15
- I, [2010-12-28T11:26:12.350291 #27344] INFO -- : test/fixtures/remote_file_target/bin/echochamber
16
- I, [2010-12-28T11:26:23.479182 #27361] INFO -- : Adobe fdb (Flash Player Debugger) [build 16076]
17
-
18
- I, [2010-12-28T11:26:23.480087 #27361] INFO -- : Copyright (c) 2004-2007 Adobe, Inc. All rights reserved.
19
-
20
- I, [2010-12-28T11:26:23.480214 #27361] INFO -- : run
21
- I, [2010-12-28T11:26:23.481279 #27361] INFO -- : (fdb) [SWF] Users:lbayes:Projects:AsUnit-P2:asunit-4.0:bin:AsUnitRunner.swf - 226,833 bytes after decompression
22
-
23
- I, [2010-12-28T11:26:23.481382 #27361] INFO -- : break AsUnitRunner:12
24
- I, [2010-12-28T11:26:23.481916 #27361] INFO -- : (fdb) Breakpoint 1, AsUnitRunner() at AsUnitRunner.as:12
25
-
26
- I, [2010-12-28T11:26:23.482323 #27361] INFO -- : 12 core = new TextCore();
27
-
28
- I, [2010-12-28T11:26:23.482421 #27361] INFO -- : continue
29
- I, [2010-12-28T11:26:23.482638 #27361] INFO -- : (fdb) Continuing now
30
-
31
- I, [2010-12-28T11:26:23.482734 #27361] INFO -- : kill
32
- I, [2010-12-28T11:26:23.483188 #27361] INFO -- : y
33
- I, [2010-12-28T11:26:23.483466 #27361] INFO -- : (fdb) Kill the program being debugged? (y or n) Confirmation accepted
34
-
35
- I, [2010-12-28T11:26:23.483565 #27361] INFO -- : quit
36
- I, [2010-12-28T11:26:24.492339 #27361] INFO -- : (fdb) Adobe fdb (Flash Player Debugger) [build 16076]
37
-
38
- I, [2010-12-28T11:26:24.493331 #27361] INFO -- : Copyright (c) 2004-2007 Adobe, Inc. All rights reserved.
39
-
40
- I, [2010-12-28T11:26:24.493455 #27361] INFO -- : run
41
- I, [2010-12-28T11:26:24.494520 #27361] INFO -- : (fdb) [SWF] Users:lbayes:Projects:AsUnit-P2:asunit-4.0:bin:AsUnitRunner.swf - 226,833 bytes after decompression
42
-
43
- I, [2010-12-28T11:26:24.494629 #27361] INFO -- : break AsUnitRunner:12
44
- I, [2010-12-28T11:26:24.495160 #27361] INFO -- : (fdb) Breakpoint 1, AsUnitRunner() at AsUnitRunner.as:12
45
-
46
- I, [2010-12-28T11:26:24.495546 #27361] INFO -- : 12 core = new TextCore();
47
-
48
- I, [2010-12-28T11:26:24.495644 #27361] INFO -- : continue
49
- I, [2010-12-28T11:26:24.495862 #27361] INFO -- : (fdb) Continuing now
50
-
51
- I, [2010-12-28T11:26:24.495965 #27361] INFO -- : kill
52
- I, [2010-12-28T11:26:24.496428 #27361] INFO -- : y
53
- I, [2010-12-28T11:26:24.496705 #27361] INFO -- : (fdb) Kill the program being debugged? (y or n) Confirmation accepted
54
-
55
- I, [2010-12-28T11:26:24.496805 #27361] INFO -- : quit
56
- I, [2010-12-28T11:26:25.504632 #27361] INFO -- : (fdb) Adobe fdb (Flash Player Debugger) [build 16076]
57
-
58
- I, [2010-12-28T11:26:25.505638 #27361] INFO -- : Copyright (c) 2004-2007 Adobe, Inc. All rights reserved.
59
-
60
- I, [2010-12-28T11:26:25.505907 #27361] INFO -- : run
61
- I, [2010-12-28T11:26:25.507000 #27361] INFO -- : (fdb) [SWF] Users:lbayes:Projects:AsUnit-P2:asunit-4.0:bin:AsUnitRunner.swf - 226,833 bytes after decompression
62
-
63
- I, [2010-12-28T11:26:25.507113 #27361] INFO -- : break AsUnitRunner:12
64
- I, [2010-12-28T11:26:25.507669 #27361] INFO -- : (fdb) Breakpoint 1, AsUnitRunner() at AsUnitRunner.as:12
65
-
66
- I, [2010-12-28T11:26:25.508078 #27361] INFO -- : 12 core = new TextCore();
67
-
68
- I, [2010-12-28T11:26:25.508182 #27361] INFO -- : continue
69
- I, [2010-12-28T11:26:25.508405 #27361] INFO -- : (fdb) Continuing now
70
-
71
- I, [2010-12-28T11:26:25.508508 #27361] INFO -- : kill
72
- I, [2010-12-28T11:26:25.508969 #27361] INFO -- : y
73
- I, [2010-12-28T11:26:25.509240 #27361] INFO -- : (fdb) Kill the program being debugged? (y or n) Confirmation accepted
74
-
75
- I, [2010-12-28T11:26:25.509356 #27361] INFO -- : quit
76
- I, [2010-12-28T11:26:25.781711 #27361] INFO -- : test/fixtures/executable/flex3sdk_gem/mxmlc -debug -source-path+=test/fixtures/executable/src test/fixtures/executable/src/Main.as
77
- I, [2010-12-28T11:26:25.795163 #27361] INFO -- : success
78
-
79
- I, [2010-12-28T11:26:26.057566 #27361] INFO -- : >> Created directory at: test/fixtures/library/project_lib
80
- I, [2010-12-28T11:26:26.058080 #27361] INFO -- : >> Copied files from: (test/fixtures/library/sources/src) to: (test/fixtures/library/project_lib/fake_source_lib)
81
- I, [2010-12-28T11:26:26.058413 #27361] INFO -- : >> Copied files from: (test/fixtures/library/sources/lib/a) to: (test/fixtures/library/project_lib/fake_source_lib)
82
- I, [2010-12-28T11:26:26.058726 #27361] INFO -- : >> Copied files from: (test/fixtures/library/sources/lib/b) to: (test/fixtures/library/project_lib/fake_source_lib)
83
- I, [2010-12-28T11:26:26.099633 #27361] INFO -- : Unpacking archive at test/fixtures/sprout/cache/downloaded.zip now. This can take anywhere from a few seconds to many minutes depending on your OS and the size of the archive.
84
-
85
- If you're on windows, consider using this ample time to look into improving the zip utils in Ruby...
86
- I, [2010-12-28T11:26:26.116184 #27361] INFO -- : Unpacking archive at test/fixtures/sprout/cache/downloaded.zip now. This can take anywhere from a few seconds to many minutes depending on your OS and the size of the archive.
87
-
88
- If you're on windows, consider using this ample time to look into improving the zip utils in Ruby...
89
- I, [2010-12-28T11:26:26.243106 #27361] INFO -- : test/fixtures/remote_file_target/bin/echochamber
90
- I, [2010-12-28T11:27:54.054369 #27410] INFO -- : Adobe fdb (Flash Player Debugger) [build 16076]
91
-
92
- I, [2010-12-28T11:27:54.055729 #27410] INFO -- : Copyright (c) 2004-2007 Adobe, Inc. All rights reserved.
93
-
94
- I, [2010-12-28T11:27:54.055875 #27410] INFO -- : run
95
- I, [2010-12-28T11:27:54.057088 #27410] INFO -- : (fdb) [SWF] Users:lbayes:Projects:AsUnit-P2:asunit-4.0:bin:AsUnitRunner.swf - 226,833 bytes after decompression
96
-
97
- I, [2010-12-28T11:27:54.057212 #27410] INFO -- : break AsUnitRunner:12
98
- I, [2010-12-28T11:27:54.057896 #27410] INFO -- : (fdb) Breakpoint 1, AsUnitRunner() at AsUnitRunner.as:12
99
-
100
- I, [2010-12-28T11:27:54.058349 #27410] INFO -- : 12 core = new TextCore();
101
-
102
- I, [2010-12-28T11:27:54.058460 #27410] INFO -- : continue
103
- I, [2010-12-28T11:27:54.058701 #27410] INFO -- : (fdb) Continuing now
104
-
105
- I, [2010-12-28T11:27:54.058831 #27410] INFO -- : kill
106
- I, [2010-12-28T11:27:54.059315 #27410] INFO -- : y
107
- I, [2010-12-28T11:27:54.059612 #27410] INFO -- : (fdb) Kill the program being debugged? (y or n) Confirmation accepted
108
-
109
- I, [2010-12-28T11:27:54.059718 #27410] INFO -- : quit
110
- I, [2010-12-28T11:27:55.063437 #27410] INFO -- : (fdb) Adobe fdb (Flash Player Debugger) [build 16076]
111
-
112
- I, [2010-12-28T11:27:55.064774 #27410] INFO -- : Copyright (c) 2004-2007 Adobe, Inc. All rights reserved.
113
-
114
- I, [2010-12-28T11:27:55.065061 #27410] INFO -- : run
115
- I, [2010-12-28T11:27:55.066178 #27410] INFO -- : (fdb) [SWF] Users:lbayes:Projects:AsUnit-P2:asunit-4.0:bin:AsUnitRunner.swf - 226,833 bytes after decompression
116
-
117
- I, [2010-12-28T11:27:55.066287 #27410] INFO -- : break AsUnitRunner:12
118
- I, [2010-12-28T11:27:55.066929 #27410] INFO -- : (fdb) Breakpoint 1, AsUnitRunner() at AsUnitRunner.as:12
119
-
120
- I, [2010-12-28T11:27:55.067398 #27410] INFO -- : 12 core = new TextCore();
121
-
122
- I, [2010-12-28T11:27:55.067522 #27410] INFO -- : continue
123
- I, [2010-12-28T11:27:55.067758 #27410] INFO -- : (fdb) Continuing now
124
-
125
- I, [2010-12-28T11:27:55.067876 #27410] INFO -- : kill
126
- I, [2010-12-28T11:27:55.068340 #27410] INFO -- : y
127
- I, [2010-12-28T11:27:55.068620 #27410] INFO -- : (fdb) Kill the program being debugged? (y or n) Confirmation accepted
128
-
129
- I, [2010-12-28T11:27:55.068725 #27410] INFO -- : quit
130
- I, [2010-12-28T11:27:56.074625 #27410] INFO -- : (fdb) Adobe fdb (Flash Player Debugger) [build 16076]
131
-
132
- I, [2010-12-28T11:27:56.075874 #27410] INFO -- : Copyright (c) 2004-2007 Adobe, Inc. All rights reserved.
133
-
134
- I, [2010-12-28T11:27:56.076126 #27410] INFO -- : run
135
- I, [2010-12-28T11:27:56.077269 #27410] INFO -- : (fdb) [SWF] Users:lbayes:Projects:AsUnit-P2:asunit-4.0:bin:AsUnitRunner.swf - 226,833 bytes after decompression
136
-
137
- I, [2010-12-28T11:27:56.077403 #27410] INFO -- : break AsUnitRunner:12
138
- I, [2010-12-28T11:27:56.077982 #27410] INFO -- : (fdb) Breakpoint 1, AsUnitRunner() at AsUnitRunner.as:12
139
-
140
- I, [2010-12-28T11:27:56.078397 #27410] INFO -- : 12 core = new TextCore();
141
-
142
- I, [2010-12-28T11:27:56.078518 #27410] INFO -- : continue
143
- I, [2010-12-28T11:27:56.078738 #27410] INFO -- : (fdb) Continuing now
144
-
145
- I, [2010-12-28T11:27:56.078854 #27410] INFO -- : kill
146
- I, [2010-12-28T11:27:56.079332 #27410] INFO -- : y
147
- I, [2010-12-28T11:27:56.079608 #27410] INFO -- : (fdb) Kill the program being debugged? (y or n) Confirmation accepted
148
-
149
- I, [2010-12-28T11:27:56.079719 #27410] INFO -- : quit
150
- I, [2010-12-28T11:27:56.351411 #27410] INFO -- : test/fixtures/executable/flex3sdk_gem/mxmlc -debug -source-path+=test/fixtures/executable/src test/fixtures/executable/src/Main.as
151
- I, [2010-12-28T11:27:56.365007 #27410] INFO -- : success
152
-
153
- I, [2010-12-28T11:27:56.704053 #27410] INFO -- : >> Created directory at: test/fixtures/library/project_lib
154
- I, [2010-12-28T11:27:56.704580 #27410] INFO -- : >> Copied files from: (test/fixtures/library/sources/src) to: (test/fixtures/library/project_lib/fake_source_lib)
155
- I, [2010-12-28T11:27:56.704914 #27410] INFO -- : >> Copied files from: (test/fixtures/library/sources/lib/a) to: (test/fixtures/library/project_lib/fake_source_lib)
156
- I, [2010-12-28T11:27:56.705264 #27410] INFO -- : >> Copied files from: (test/fixtures/library/sources/lib/b) to: (test/fixtures/library/project_lib/fake_source_lib)
157
- I, [2010-12-28T11:27:56.747832 #27410] INFO -- : Unpacking archive at test/fixtures/sprout/cache/downloaded.zip now. This can take anywhere from a few seconds to many minutes depending on your OS and the size of the archive.
158
-
159
- If you're on windows, consider using this ample time to look into improving the zip utils in Ruby...
160
- I, [2010-12-28T11:27:56.765313 #27410] INFO -- : Unpacking archive at test/fixtures/sprout/cache/downloaded.zip now. This can take anywhere from a few seconds to many minutes depending on your OS and the size of the archive.
161
-
162
- If you're on windows, consider using this ample time to look into improving the zip utils in Ruby...
163
- I, [2010-12-28T11:27:56.893730 #27410] INFO -- : test/fixtures/remote_file_target/bin/echochamber
164
- I, [2010-12-28T11:29:05.370186 #27453] INFO -- : Adobe fdb (Flash Player Debugger) [build 16076]
165
-
166
- I, [2010-12-28T11:29:05.371370 #27453] INFO -- : Copyright (c) 2004-2007 Adobe, Inc. All rights reserved.
167
-
168
- I, [2010-12-28T11:29:05.371523 #27453] INFO -- : run
169
- I, [2010-12-28T11:29:05.372699 #27453] INFO -- : (fdb) [SWF] Users:lbayes:Projects:AsUnit-P2:asunit-4.0:bin:AsUnitRunner.swf - 226,833 bytes after decompression
170
-
171
- I, [2010-12-28T11:29:05.372830 #27453] INFO -- : break AsUnitRunner:12
172
- I, [2010-12-28T11:29:05.373372 #27453] INFO -- : (fdb) Breakpoint 1, AsUnitRunner() at AsUnitRunner.as:12
173
-
174
- I, [2010-12-28T11:29:05.373761 #27453] INFO -- : 12 core = new TextCore();
175
-
176
- I, [2010-12-28T11:29:05.373858 #27453] INFO -- : continue
177
- I, [2010-12-28T11:29:05.374086 #27453] INFO -- : (fdb) Continuing now
178
-
179
- I, [2010-12-28T11:29:05.374186 #27453] INFO -- : kill
180
- I, [2010-12-28T11:29:05.374613 #27453] INFO -- : y
181
- I, [2010-12-28T11:29:05.374873 #27453] INFO -- : (fdb) Kill the program being debugged? (y or n) Confirmation accepted
182
-
183
- I, [2010-12-28T11:29:05.374975 #27453] INFO -- : quit
184
- I, [2010-12-28T11:29:06.488623 #27453] INFO -- : (fdb) Adobe fdb (Flash Player Debugger) [build 16076]
185
-
186
- I, [2010-12-28T11:29:06.489720 #27453] INFO -- : Copyright (c) 2004-2007 Adobe, Inc. All rights reserved.
187
-
188
- I, [2010-12-28T11:29:06.489848 #27453] INFO -- : run
189
- I, [2010-12-28T11:29:06.490908 #27453] INFO -- : (fdb) [SWF] Users:lbayes:Projects:AsUnit-P2:asunit-4.0:bin:AsUnitRunner.swf - 226,833 bytes after decompression
190
-
191
- I, [2010-12-28T11:29:06.491012 #27453] INFO -- : break AsUnitRunner:12
192
- I, [2010-12-28T11:29:06.491540 #27453] INFO -- : (fdb) Breakpoint 1, AsUnitRunner() at AsUnitRunner.as:12
193
-
194
- I, [2010-12-28T11:29:06.491941 #27453] INFO -- : 12 core = new TextCore();
195
-
196
- I, [2010-12-28T11:29:06.492042 #27453] INFO -- : continue
197
- I, [2010-12-28T11:29:06.492237 #27453] INFO -- : (fdb) Continuing now
198
-
199
- I, [2010-12-28T11:29:06.492351 #27453] INFO -- : kill
200
- I, [2010-12-28T11:29:06.492799 #27453] INFO -- : y
201
- I, [2010-12-28T11:29:06.493046 #27453] INFO -- : (fdb) Kill the program being debugged? (y or n) Confirmation accepted
202
-
203
- I, [2010-12-28T11:29:06.493156 #27453] INFO -- : quit
204
- I, [2010-12-28T11:29:07.520305 #27453] INFO -- : (fdb) Adobe fdb (Flash Player Debugger) [build 16076]
205
-
206
- I, [2010-12-28T11:29:07.521304 #27453] INFO -- : Copyright (c) 2004-2007 Adobe, Inc. All rights reserved.
207
-
208
- I, [2010-12-28T11:29:07.521458 #27453] INFO -- : run
209
- I, [2010-12-28T11:29:07.522541 #27453] INFO -- : (fdb) [SWF] Users:lbayes:Projects:AsUnit-P2:asunit-4.0:bin:AsUnitRunner.swf - 226,833 bytes after decompression
210
-
211
- I, [2010-12-28T11:29:07.522659 #27453] INFO -- : break AsUnitRunner:12
212
- I, [2010-12-28T11:29:07.523196 #27453] INFO -- : (fdb) Breakpoint 1, AsUnitRunner() at AsUnitRunner.as:12
213
-
214
- I, [2010-12-28T11:29:07.523609 #27453] INFO -- : 12 core = new TextCore();
215
-
216
- I, [2010-12-28T11:29:07.523722 #27453] INFO -- : continue
217
- I, [2010-12-28T11:29:07.523950 #27453] INFO -- : (fdb) Continuing now
218
-
219
- I, [2010-12-28T11:29:07.524065 #27453] INFO -- : kill
220
- I, [2010-12-28T11:29:07.524511 #27453] INFO -- : y
221
- I, [2010-12-28T11:29:07.524791 #27453] INFO -- : (fdb) Kill the program being debugged? (y or n) Confirmation accepted
222
-
223
- I, [2010-12-28T11:29:07.525091 #27453] INFO -- : quit
224
- I, [2010-12-28T11:29:07.796556 #27453] INFO -- : test/fixtures/executable/flex3sdk_gem/mxmlc -debug -source-path+=test/fixtures/executable/src test/fixtures/executable/src/Main.as
225
- I, [2010-12-28T11:29:07.810040 #27453] INFO -- : success
226
-
227
- I, [2010-12-28T11:29:08.177364 #27453] INFO -- : >> Created directory at: test/fixtures/library/project_lib
228
- I, [2010-12-28T11:29:08.177877 #27453] INFO -- : >> Copied files from: (test/fixtures/library/sources/src) to: (test/fixtures/library/project_lib/fake_source_lib)
229
- I, [2010-12-28T11:29:08.178219 #27453] INFO -- : >> Copied files from: (test/fixtures/library/sources/lib/a) to: (test/fixtures/library/project_lib/fake_source_lib)
230
- I, [2010-12-28T11:29:08.178583 #27453] INFO -- : >> Copied files from: (test/fixtures/library/sources/lib/b) to: (test/fixtures/library/project_lib/fake_source_lib)
231
- I, [2010-12-28T11:29:08.225726 #27453] INFO -- : Unpacking archive at test/fixtures/sprout/cache/downloaded.zip now. This can take anywhere from a few seconds to many minutes depending on your OS and the size of the archive.
232
-
233
- If you're on windows, consider using this ample time to look into improving the zip utils in Ruby...
234
- I, [2010-12-28T11:29:08.241958 #27453] INFO -- : Unpacking archive at test/fixtures/sprout/cache/downloaded.zip now. This can take anywhere from a few seconds to many minutes depending on your OS and the size of the archive.
235
-
236
- If you're on windows, consider using this ample time to look into improving the zip utils in Ruby...
237
- I, [2010-12-28T11:29:08.365665 #27453] INFO -- : test/fixtures/remote_file_target/bin/echochamber