Changeset 2165 in kBuild
- Timestamp:
- Dec 30, 2008 1:30:01 AM (16 years ago)
- Location:
- trunk/src/kmk/tests/scripts
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/tests/scripts/features/targetvars
r1960 r2165 67 67 # TEST #2 68 68 69 &run_make_with_options($makefile, " one two FOO=1 BAR=2", &get_logfile);69 &run_make_with_options($makefile, "-j1 one two FOO=1 BAR=2", &get_logfile); 70 70 $answer = "one 2\n1 2\n"; 71 71 &compare_output($answer,&get_logfile(1)); … … 73 73 # TEST #3 74 74 75 &run_make_with_options($makefile, " four", &get_logfile);75 &run_make_with_options($makefile, "-j1 four", &get_logfile); 76 76 $answer = "x ok ok\n"; 77 77 &compare_output($answer,&get_logfile(1)); … … 79 79 # TEST #4 80 80 81 &run_make_with_options($makefile, " seven", &get_logfile);81 &run_make_with_options($makefile, "-j1 seven", &get_logfile); 82 82 $answer = "eight: seven eight\nseven: seven seven\n"; 83 83 &compare_output($answer,&get_logfile(1)); … … 85 85 # TEST #5 86 86 87 &run_make_with_options($makefile, " nine", &get_logfile);87 &run_make_with_options($makefile, "-j1 nine", &get_logfile); 88 88 $answer = "wallace bar wallace bar\n"; 89 89 &compare_output($answer,&get_logfile(1)); … … 91 91 # TEST #5-a 92 92 93 &run_make_with_options($makefile, " nine-a", &get_logfile);93 &run_make_with_options($makefile, "-j1 nine-a", &get_logfile); 94 94 $answer = "baz\n"; 95 95 &compare_output($answer,&get_logfile(1)); … … 97 97 # TEST #6 98 98 99 &run_make_with_options($makefile, " ten", &get_logfile);99 &run_make_with_options($makefile, "-j1 ten", &get_logfile); 100 100 $answer = "one=two\none bar\n=\nfoo two\nten\n"; 101 101 &compare_output($answer,&get_logfile(1)); … … 103 103 # TEST #6 104 104 105 &run_make_with_options($makefile, " foo.q bar.q", &get_logfile);105 &run_make_with_options($makefile, "-j1 foo.q bar.q", &get_logfile); 106 106 $answer = "qvar = rvar\nqvar =\n"; 107 107 &compare_output($answer,&get_logfile(1)); … … 109 109 # TEST #7 110 110 111 &run_make_with_options($makefile, " foo.t bar.s", &get_logfile);111 &run_make_with_options($makefile, "-j1 foo.t bar.s", &get_logfile); 112 112 $answer = "qvar = qvar\nqvar =\n"; 113 113 &compare_output($answer,&get_logfile(1)); -
trunk/src/kmk/tests/scripts/misc/general2
r969 r2165 38 38 &touch(@files_to_touch); 39 39 40 &run_make_with_options($makefile," ",&get_logfile);40 &run_make_with_options($makefile,"-j1",&get_logfile); 41 41 42 42 # Create the answer to what should be produced by this Makefile
Note:
See TracChangeset
for help on using the changeset viewer.