*** empty log message ***

svn path=/trunk/boinc/; revision=2318
This commit is contained in:
Karl Chen 2003-09-09 07:46:29 +00:00
parent 6939d5557d
commit 0e0e5e01af
2 changed files with 5 additions and 2 deletions

View File

@ -142,6 +142,9 @@ int main(int argc, char **argv) {
my_start_time = time(0);
// NOTE: if you change output here, remember to change the output that
// test_uc.py pattern-matches against.
for (i=0; i<argc; i++) {
fprintf(stderr, "APP: upper_case: argv[%d] is %s\n", i, argv[i]);
if (!strcmp(argv[i], "-run_slow")) run_slow = true;

View File

@ -31,8 +31,8 @@ class WorkUC(Work):
class ResultUC(Result):
def __init__(self):
self.stderr_out = MATCH_REGEXPS([
"<stderr_txt>\n" +
"APP: upper_case: starting, argc \\d+\n" +
"<stderr_txt>",
"APP: upper_case: starting, argc \\d+",
"APP: upper_case: argv[[]0[]] is upper_case",
"APP: upper_case ending, wrote \\d+ chars"])