Home | History | Annotate | Download | only in targets

Lines Matching full:answer

39 $answer = "cp foo.f foo.e\ncp foo.e foo.d\nrm foo.e\n";
40 &compare_output($answer, &get_logfile(1));
45 $answer = "$make_name: `foo.d' is up to date.\n";
46 &compare_output($answer, &get_logfile(1));
54 $answer = "cp foo.f foo.e\ncp foo.e foo.d\nrm foo.e\n";
55 &compare_output($answer, &get_logfile(1));
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 &compare_output($answer, &get_logfile(1));
66 $answer = "$make_name: `foo.c' is up to date.\n";
67 &compare_output($answer, &get_logfile(1));
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";
76 &compare_output($answer, &get_logfile(1));
81 $answer = "cp foo.f foo.e\n";
82 &compare_output($answer, &get_logfile(1));
102 $answer = "touch foo.a\ntouch foo\nrm foo.a\n";
103 &compare_output($answer, &get_logfile(1));