Changeset 903 for trunk/src/gmakenew/tests/scripts
- Timestamp:
- May 23, 2007, 7:31:19 AM (18 years ago)
- Location:
- trunk/src/gmakenew/tests/scripts
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmakenew/tests/scripts/features/patternrules
r503 r903 11 11 12 12 13 # TEST #1: Make sure that multiple patterns where the same target14 # 15 # 13 # TEST #0: Make sure that multiple patterns where the same target 14 # can be built are searched even if the first one fails 15 # to match properly. 16 16 # 17 17 … … 46 46 ''); 47 47 48 # TEST # 2: make sure files that are built via implicit rules are marked48 # TEST #1: make sure files that are built via implicit rules are marked 49 49 # as targets (Savannah bug #12202). 50 50 # … … 70 70 71 71 72 # TEST # 3: make sure intermidite files that also happened to be72 # TEST #2: make sure intermediate files that also happened to be 73 73 # prerequisites are not removed (Savannah bug #12267). 74 74 # … … 97 97 98 98 99 # TEST # 4: make sure precious flag is set properly for targets99 # TEST #3: make sure precious flag is set properly for targets 100 100 # that are built via implicit rules (Savannah bug #13218). 101 101 # … … 117 117 118 118 119 # TEST # 5: make sure targets of a macthed implicit pattern rule never119 # TEST #4: make sure targets of a matched implicit pattern rule are 120 120 # never considered intermediate (Savannah bug #13022). 121 121 # -
trunk/src/gmakenew/tests/scripts/variables/automatic
r503 r903 96 96 # considered reasons for the target to be rebuilt. 97 97 # 98 # This was undone due to Savannah bug #16002. We'll re-do it in the next 99 # release. See Savannah bug #16051. 98 # See also Savannah bugs #16002 and #16051. 100 99 101 #touch('foo');102 # 103 #run_make_test('104 #foo: bar ; @echo "\$$? = $?"105 #bar: ;',106 #'',107 #'$? = bar');108 # 109 #unlink('foo');100 touch('foo'); 101 102 run_make_test(' 103 foo: bar ; @echo "\$$? = $?" 104 bar: ;', 105 '', 106 '$? = bar'); 107 108 unlink('foo'); 110 109 111 110 1;
Note:
See TracChangeset
for help on using the changeset viewer.