summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorQC <qball@gmpclient.org>2015-02-09 19:58:17 +0100
committerQC <qball@gmpclient.org>2015-02-09 19:58:17 +0100
commitf6bc8f7c32254aa442f9ab55cf157cb15c102aba (patch)
treea0af720ab5911d0163e97a98552331aab2538684 /test
parent682907d3409db9c5d22314eb8fc5a0acf9d11b5a (diff)
Fix test compile warning.
Diffstat (limited to 'test')
-rw-r--r--test/helper-test.c2
-rw-r--r--test/history-test.c17
-rw-r--r--test/textbox-test.c5
3 files changed, 4 insertions, 20 deletions
diff --git a/test/helper-test.c b/test/helper-test.c
index 2d64372a..b8a1061c 100644
--- a/test/helper-test.c
+++ b/test/helper-test.c
@@ -11,7 +11,7 @@ static int test = 0;
printf("Test %i passed (%s)\n", ++test, #a);\
}
-int main ( int argc, char ** argv )
+int main ( G_GNUC_UNUSED int argc, G_GNUC_UNUSED char ** argv )
{
char **list = NULL;
int llength = 0;
diff --git a/test/history-test.c b/test/history-test.c
index 00e1e954..2ac2c846 100644
--- a/test/history-test.c
+++ b/test/history-test.c
@@ -61,7 +61,7 @@ void history_test()
g_strfreev(retv);
- for(int in=length+1; in < 26; in++) {
+ for(unsigned int in=length+1; in < 26; in++) {
char *p = g_strdup_printf("aap%i", in);
printf("%s- %d\n",p, in);
history_set( file, p);
@@ -83,22 +83,9 @@ void history_test()
g_strfreev(retv);
- // Test fail.
- history_set ( NULL, "aap");
-
- retv = history_get_list ( NULL , &length);
- printf("Test %i passed\n", ++test);
-
- TASSERT ( retv == NULL );
- TASSERT ( length == 0 );
-
- history_remove ( NULL, "aap" );
- printf("Test %i passed\n", ++test);
-
-
}
-int main ( int argc, char **argv )
+int main ( G_GNUC_UNUSED int argc, G_GNUC_UNUSED char **argv )
{
history_test();
diff --git a/test/textbox-test.c b/test/textbox-test.c
index d8d9fe48..bd8ef80f 100644
--- a/test/textbox-test.c
+++ b/test/textbox-test.c
@@ -26,7 +26,6 @@ XVisualInfo vinfo;
static unsigned int color_get ( Display *display, const char *const name )
{
- int screen_id = DefaultScreen ( display );
XColor color;
// Special format.
if ( strncmp ( name, "argb:", 5 ) == 0 ) {
@@ -53,7 +52,7 @@ static void create_visual_and_colormap()
map = DefaultColormap( display, DefaultScreen (display));
}
}
-int main ( int argc, char **argv )
+int main ( G_GNUC_UNUSED int argc, G_GNUC_UNUSED char **argv )
{
// Get DISPLAY
@@ -64,8 +63,6 @@ int main ( int argc, char **argv )
}
create_visual_and_colormap();
TASSERT( display != NULL );
- Screen *screen = DefaultScreenOfDisplay ( display );
- Window root = RootWindow ( display, XScreenNumberOfScreen ( screen ) );
XSetWindowAttributes attr;
attr.colormap = map;
attr.border_pixel = color_get ( display, config.menu_bc );