Changeset 6682 for trunk/UNIT_TESTER/sym2testcode.pl
- Timestamp:
- 03/08/10 11:42:36 (22 months ago)
- Files:
-
- 1 modified
-
trunk/UNIT_TESTER/sym2testcode.pl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/UNIT_TESTER/sym2testcode.pl
r6653 r6682 141 141 } keys %$id_r; 142 142 143 # sort TEST_SLOW_ to the end 144 { 145 my @tests_fast = (); 146 my @tests_slow = (); 147 148 foreach (@tests) { 149 if (/^TEST_SLOW_/) { push @tests_slow, $_; } 150 else { push @tests_fast, $_; } 151 } 152 153 @tests = @tests_fast; 154 push @tests, @tests_slow; 155 } 156 143 157 my $code = ''; 144 158
