Changeset 2d11a7d8 in mainline for uspace/app/tester/loop/loop1.c


Ignore:
Timestamp:
2009-06-30T15:54:14Z (16 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9c40f883
Parents:
db24058
Message:

tester framework rewrite (go from a menu-driven interface to command-line interface)

File:
1 edited

Legend:

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

    rdb24058 r2d11a7d8  
    3131#include "../tester.h"
    3232
    33 char *test_loop1(bool quiet)
     33char *test_loop1(void)
    3434{
    35         printf("Looping...\n");
    36         while (1);
    37         printf("Survived endless loop?!!\n");
    38 
    39         return NULL;
     35        TPRINTF("Looping...");
     36        while (true);
     37        TPRINTF("\n");
     38       
     39        return "Survived endless loop";
    4040}
    41 
Note: See TracChangeset for help on using the changeset viewer.