Changeset 1010
- Timestamp:
- 04/18/08 02:09:38 (3 months ago)
- Files:
-
- branches/stable_1-2 (modified) (3 props)
- branches/stable_1-2/projects/mongrel_service/Rakefile (modified) (1 diff)
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
- Property bzr:revision-id:v3-trunk0 changed from
branches/stable_1-2/projects/mongrel_service/Rakefile
r1007 r1010 98 98 task :native_service => "native:build" 99 99 task :clean => "native:clobber" 100 101 project_task :mock_process do 102 executable :mock_process 103 build_to 'tests' 104 105 main 'tests/fixtures/mock_process.bas' 106 107 option OPTIONS 108 end 109 110 task "all_tests:build" => "lib:build" 111 project_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 128 end 129 130 desc "Run all the internal tests for the library" 131 task "all_tests:run" => ["mock_process:build", "all_tests:build"] do 132 Dir.chdir('tests') do 133 sh %{all_tests} 134 end 135 end 136 137 desc "Run all the test for this project" 138 task :test => "all_tests:run"
