Changeset 1966 in kBuild for trunk/src/kmk/tests/scripts
- Timestamp:
- Oct 26, 2008 8:39:22 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/tests/scripts/targets/INTERMEDIATE
r969 r1966 56 56 57 57 # TEST #3 58 # kmk: differs because of different hashing. 58 59 59 60 &run_make_with_options($makefile,'foo.c',&get_logfile); 60 $answer = "cp foo.f foo.e\ncp bar.f bar.e\ncat foo.e bar.e > foo.c\nrm bar.e foo.e\n"; 61 $answer = "cp foo.f foo.e\ncp bar.f bar.e\ncat foo.e bar.e > foo.c\n" 62 . (!$is_kmk ? "rm bar.e foo.e\n" : "rm foo.e bar.e\n"); 61 63 &compare_output($answer, &get_logfile(1)); 62 64 … … 68 70 69 71 # TEST #5 72 # kmk: differs because of different hashing. 70 73 71 74 &utouch(-10, 'foo.c'); … … 73 76 74 77 &run_make_with_options($makefile,'foo.c',&get_logfile); 75 $answer = "cp foo.f foo.e\ncp bar.f bar.e\ncat foo.e bar.e > foo.c\nrm bar.e foo.e\n"; 78 $answer = "cp foo.f foo.e\ncp bar.f bar.e\ncat foo.e bar.e > foo.c\n" 79 . (!$is_kmk ? "rm bar.e foo.e\n" : "rm foo.e bar.e\n"); 76 80 &compare_output($answer, &get_logfile(1)); 77 81
Note:
See TracChangeset
for help on using the changeset viewer.