removed old tests
[smdp.git] / test / color.c
diff --git a/test/color.c b/test/color.c
deleted file mode 100644 (file)
index c2b58be..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-#include <ncurses.h>
-
-WINDOW *w;
-
-void set_colors(void)
-{
-    int i;
-    initscr();
-    start_color();
-    use_default_colors();
-
-    for(i=0; i < COLORS; i++)
-    {
-        init_pair(i, i, -1);
-        attron(COLOR_PAIR(i));
-        printw(" %3.hd", i);
-        if((i + 1) % 36 == 0) printw("\n");
-        refresh();
-    }
-    standend();
-    getch();
-    endwin();
-}
-
-int main(void)
-{
-    set_colors();
-    return 0;
-}