Changeset 209cd41 in mainline for uspace/app/tester/tester.c


Ignore:
Timestamp:
2018-10-12T15:03:40Z (7 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d4eba6d
Parents:
d09eeb2
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-10-12 12:24:19)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-10-12 15:03:40)
Message:

Replace scripts and HTML generated in boot/Makefile with a testrunner app

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/tester/tester.c

    rd09eeb2 r209cd41  
    9393}
    9494
    95 static void run_safe_tests(void)
     95static int run_safe_tests(void)
    9696{
    9797        test_t *test;
     
    131131        if (failed_names)
    132132                printf("Failed tests: %s\n", failed_names);
     133
     134        return n;
    133135}
    134136
     
    171173
    172174        if (str_cmp(argv[1], "*") == 0) {
    173                 run_safe_tests();
    174                 return 0;
     175                return run_safe_tests();
    175176        }
    176177
Note: See TracChangeset for help on using the changeset viewer.