pcb 4.1.1
An interactive printed circuit board layout editor.

main-test.c

Go to the documentation of this file.
00001 
00033 #ifdef HAVE_CONFIG_H
00034 #include "config.h"
00035 #endif
00036 
00037 #include "global.h"
00038 #include "pcb-printf.h"
00039 
00040 int
00041 main (int argc, char *argv[])
00042 {
00043   initialize_units ();
00044   pcb_printf_register_tests ();
00045 
00046   g_test_init (&argc, &argv, NULL);
00047   g_test_run ();
00048   return 0;
00049 }
00050