Changeset 501 in kBuild for vendor/gnumake/current/tests/scripts/variables/automatic
- Timestamp:
- Sep 15, 2006 2:30:32 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/gnumake/current/tests/scripts/variables/automatic
r284 r501 28 28 close(MAKEFILE); 29 29 30 # TEST # 1-- simple test30 # TEST #0 -- simple test 31 31 # ------- 32 32 … … 47 47 unlink(qw(foo.x bar.y baz.z)); 48 48 49 # TEST # 2-- test the SysV emulation of $$@ etc.49 # TEST #1 -- test the SysV emulation of $$@ etc. 50 50 # ------- 51 51 … … 55 55 print MAKEFILE "dir = $dir\n"; 56 56 print MAKEFILE <<'EOF'; 57 .SECONDEXPANSION: 57 58 .SUFFIXES: 58 59 .DEFAULT: ; @echo '$@' … … 79 80 &compare_output($answer, &get_logfile(1)); 80 81 81 # TEST # 3-- test for Savannah bug #12320.82 # TEST #2 -- test for Savannah bug #12320. 82 83 # 83 84 run_make_test(' … … 87 88 @echo $* 88 89 89 mbr.src: ; @: 90 mbr.src: ; @:', 91 '', 92 'mbr'); 90 93 91 ', 92 '', 93 'mbr 94 '); 94 # TEST #3 -- test for Savannah bug #8154 95 # Make sure that nonexistent prerequisites are listed in $?, since they are 96 # considered reasons for the target to be rebuilt. 97 # 98 # This was undone due to Savannah bug #16002. We'll re-do it in the next 99 # release. See Savannah bug #16051. 100 101 #touch('foo'); 102 # 103 #run_make_test(' 104 #foo: bar ; @echo "\$$? = $?" 105 #bar: ;', 106 # '', 107 # '$? = bar'); 108 # 109 #unlink('foo'); 95 110 96 111 1;
Note:
See TracChangeset
for help on using the changeset viewer.