Changeset 284 in kBuild for branches/GNU/src/gmake/tests/scripts/variables/automatic
- Timestamp:
- May 16, 2005 4:54:08 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gmake/tests/scripts/variables/automatic
r53 r284 68 68 69 69 &run_make_with_options($makefile2, "$dir/foo $dir/bar", &get_logfile); 70 $answer = ".x\n$dir/foo.x\n \$.x\n\[email protected]\n$dir.x\nfoo.x\n$dir/bar.x\nbar.x\n";70 $answer = ".x\n$dir/foo.x\nx\n\[email protected]\n$dir.x\nfoo.x\n$dir/bar.x\nbar.x\n"; 71 71 &compare_output($answer, &get_logfile(1)); 72 72 73 73 &run_make_with_options($makefile2, "$dir/x.z $dir/y.z", &get_logfile); 74 $answer = ".x\n$dir/x.z.x\n \$.x\n\[email protected]\n$dir.x\nx.z.x\n.y\n$dir/y.z.y\n\$.y\n\[email protected]\n$dir.y\ny.z.y\n";74 $answer = ".x\n$dir/x.z.x\nx\n\[email protected]\n$dir.x\nx.z.x\n.y\n$dir/y.z.y\n\y\n\[email protected]\n$dir.y\ny.z.y\n"; 75 75 &compare_output($answer, &get_logfile(1)); 76 76 … … 79 79 &compare_output($answer, &get_logfile(1)); 80 80 81 # TEST #3 -- test for Savannah bug #12320. 82 # 83 run_make_test(' 84 .SUFFIXES: .b .src 85 86 mbr.b: mbr.src 87 @echo $* 88 89 mbr.src: ; @: 90 91 ', 92 '', 93 'mbr 94 '); 95 81 96 1;
Note:
See TracChangeset
for help on using the changeset viewer.