Changeset 284 in kBuild for branches/GNU/src/gmake/tests/scripts/features/statipattrules
- Timestamp:
- May 16, 2005 4:54:08 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gmake/tests/scripts/features/statipattrules
r53 r284 56 56 $makefile2 = &get_tmpfile; 57 57 open(MAKEFILE, "> $makefile2"); 58 print MAKEFILE "foo: foo%: % ; \@echo $@\n";58 print MAKEFILE "foo: foo%: % ; \@echo \$@\n"; 59 59 close(MAKEFILE); 60 60 61 &run_make_with_options($makefile2, '', &get_logfile , 512);62 $answer = " $makefile2:1: *** target `foo' leaves prerequisite pattern empty. Stop.\n";61 &run_make_with_options($makefile2, '', &get_logfile); 62 $answer = "foo\n"; 63 63 &compare_output($answer, &get_logfile(1)); 64 64 65 # TEST #5 -- bug #12180: core dump on a stat pattern rule with an empty 66 # prerequisite list. 67 # 68 run_make_test(' 69 foo.x bar.x: %.x : ; @echo $@ 70 71 ', 72 '', 73 'foo.x 74 '); 65 75 66 76 1; 67 68 69 70 71 72
Note:
See TracChangeset
for help on using the changeset viewer.

