Subversion Repositories HelenOS

Rev

Rev 3536 | Rev 4377 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. /*
  2.  * Copyright (c) 2006 Ondrej Palkovsky
  3.  * Copyright (c) 2007 Martin Decky
  4.  * All rights reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  *
  10.  * - Redistributions of source code must retain the above copyright
  11.  *   notice, this list of conditions and the following disclaimer.
  12.  * - Redistributions in binary form must reproduce the above copyright
  13.  *   notice, this list of conditions and the following disclaimer in the
  14.  *   documentation and/or other materials provided with the distribution.
  15.  * - The name of the author may not be used to endorse or promote products
  16.  *   derived from this software without specific prior written permission.
  17.  *
  18.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  19.  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  20.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  21.  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  22.  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  23.  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  24.  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  25.  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  26.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  27.  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28.  */
  29.  
  30. /** @addtogroup tester User space Tester
  31.  * @brief   User space testing infrastructure.
  32.  * @{
  33.  */
  34. /**
  35.  * @file
  36.  */
  37.  
  38. #include <unistd.h>
  39. #include <stdio.h>
  40. #include "tester.h"
  41.  
  42. int myservice = 0;
  43. int phones[MAX_PHONES];
  44. int connections[MAX_CONNECTIONS];
  45. ipc_callid_t callids[MAX_CONNECTIONS];
  46.  
  47. test_t tests[] = {
  48. #include "thread/thread1.def"
  49. #include "print/print1.def"
  50. #include "fault/fault1.def"
  51. #include "fault/fault2.def"
  52. #include "ipc/register.def"
  53. #include "ipc/connect.def"
  54. #include "ipc/send_async.def"
  55. #include "ipc/send_sync.def"
  56. #include "ipc/answer.def"
  57. #include "ipc/hangup.def"
  58. #include "devmap/devmap1.def"
  59. #include "loop/loop1.def"
  60. #include "vfs/vfs1.def"
  61. #include "debug/debug1.def"
  62.     {NULL, NULL, NULL}
  63. };
  64.  
  65. static bool run_test(test_t *test)
  66. {
  67.     printf("%s\t\t%s\n", test->name, test->desc);
  68.    
  69.     /* Execute the test */
  70.     char * ret = test->entry(false);
  71.    
  72.     if (ret == NULL) {
  73.         printf("Test passed\n\n");
  74.         return true;
  75.     }
  76.  
  77.     printf("%s\n\n", ret);
  78.     return false;
  79. }
  80.  
  81. static void run_safe_tests(void)
  82. {
  83.     test_t *test;
  84.     unsigned int i = 0;
  85.     unsigned int n = 0;
  86.  
  87.     printf("\n*** Running all safe tests ***\n\n");
  88.  
  89.     for (test = tests; test->name != NULL; test++) {
  90.         if (test->safe) {
  91.             if (run_test(test))
  92.                 i++;
  93.             else
  94.                 n++;
  95.         }
  96.     }
  97.  
  98.     printf("\nSafe tests completed, %u tests run, %u passed.\n\n", i + n, i);
  99. }
  100.  
  101. static void list_tests(void)
  102. {
  103.     test_t *test;
  104.     char c = 'a';
  105.    
  106.     for (test = tests; test->name != NULL; test++, c++)
  107.         printf("%c\t%s\t\t%s%s\n", c, test->name, test->desc, (test->safe ? "" : " (unsafe)"));
  108.    
  109.     printf("*\t\t\tRun all safe tests\n");
  110. }
  111.  
  112. int main(int argc, char **argv)
  113. {
  114.     printf("Number of arguments: %d\n", argc);
  115.     if (argv) {
  116.         printf("Arguments:");
  117.         while (*argv) {
  118.             printf(" '%s'", *argv++);
  119.         }
  120.         printf("\n");
  121.     }
  122.  
  123.     while (1) {
  124.         char c;
  125.         test_t *test;
  126.        
  127.         list_tests();
  128.         printf("> ");
  129.        
  130.         c = getchar();
  131.         printf("%c\n", c);
  132.        
  133.         if ((c >= 'a') && (c <= 'z')) {
  134.             for (test = tests; test->name != NULL; test++, c--)
  135.                 if (c == 'a')
  136.                     break;
  137.            
  138.             if (test->name == NULL)
  139.                 printf("Unknown test\n\n");
  140.             else
  141.                 run_test(test);
  142.         } else if (c == '*') {
  143.             run_safe_tests();
  144.         } else if (c < 0) {
  145.             /* got EOF */
  146.             break;
  147.         } else {
  148.             printf("Invalid test\n\n");
  149.         }
  150.            
  151.     }
  152.  
  153.     return 0;
  154. }
  155.  
  156. /** @}
  157.  */
  158.