Changeset 1010

Show
Ignore:
Timestamp:
04/18/08 02:09:38 (3 months ago)
Author:
luislavena
Message:

Include tests projects and child process fixtures.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/stable_1-2

    • Property bzr:revision-id:v3-trunk0 changed from
      814 luislavena@gmail.com-20080331074345-8r7ghwi05bwwqz7f
      815 luislavena@gmail.com-20080331075048-t48wb12km03z1k7d
      816 luislavena@gmail.com-20080331081757-x3m83b2w24vlgbhz
      817 luislavena@gmail.com-20080406001418-f6mxbnyordlkvosz
      822 luislavena@gmail.com-20080418001345-y6hgwpxkfc5qml6v
      823 luislavena@gmail.com-20080418001931-wxuitk2diz0s32cu
      to
      814 luislavena@gmail.com-20080331074345-8r7ghwi05bwwqz7f
      815 luislavena@gmail.com-20080331075048-t48wb12km03z1k7d
      816 luislavena@gmail.com-20080331081757-x3m83b2w24vlgbhz
      817 luislavena@gmail.com-20080406001418-f6mxbnyordlkvosz
      822 luislavena@gmail.com-20080418001345-y6hgwpxkfc5qml6v
      823 luislavena@gmail.com-20080418001931-wxuitk2diz0s32cu
      824 luislavena@gmail.com-20080418001955-wdpwvupki3pe6mu4
    • Property bzr:file-ids deleted
    • Property bzr:revision-info changed from
      timestamp: 2008-04-17 21:19:31.453000069 -0300
      committer: Luis Lavena <luislavena@gmail.com>
      properties:
      branch-nick: stable_1-2
      to
      timestamp: 2008-04-17 21:19:55.187000036 -0300
      committer: Luis Lavena <luislavena@gmail.com>
      properties:
      branch-nick: stable_1-2
  • branches/stable_1-2/projects/mongrel_service/Rakefile

    r1007 r1010  
    9898task :native_service => "native:build" 
    9999task :clean => "native:clobber" 
     100 
     101project_task :mock_process do 
     102  executable  :mock_process 
     103  build_to    'tests' 
     104   
     105  main        'tests/fixtures/mock_process.bas' 
     106   
     107  option      OPTIONS 
     108end  
     109 
     110task "all_tests:build" => "lib:build" 
     111project_task :all_tests do 
     112  executable  :all_tests 
     113  build_to    'tests' 
     114   
     115  search_path 'src', 'lib', 'native' 
     116  lib_path    'lib' 
     117   
     118  main        'tests/all_tests.bas' 
     119   
     120  # this temporally fix the inverse namespace ctors of FB 
     121  source      Dir.glob("tests/test_*.bas").reverse 
     122   
     123  library     'testly' 
     124   
     125  source      'native/console_process.bas' 
     126   
     127  option      OPTIONS 
     128end 
     129 
     130desc "Run all the internal tests for the library" 
     131task "all_tests:run" => ["mock_process:build", "all_tests:build"] do 
     132  Dir.chdir('tests') do 
     133    sh %{all_tests} 
     134  end 
     135end 
     136 
     137desc "Run all the test for this project" 
     138task :test => "all_tests:run"