summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-01-12 23:02:24 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-01-12 23:02:24 +0000
commit000e4d301c41c041676cc427b1744601880e4b20 (patch)
tree57adbb733657dbdf1fa6949559c919e82e76b9be
parent9372fb42cb0a7806e901a77bfdd7d2b1e98b945a (diff)
downloadlibcss-000e4d301c41c041676cc427b1744601880e4b20.tar.gz
libcss-000e4d301c41c041676cc427b1744601880e4b20.tar.bz2
Just the one iteration, thanks. Also, no spam.
More importantly, make this build when we have spam enabled. svn path=/trunk/libcss/; revision=6050
-rw-r--r--test/lex.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/lex.c b/test/lex.c
index cb2af23..13a4dd0 100644
--- a/test/lex.c
+++ b/test/lex.c
@@ -13,7 +13,7 @@
#include "testutils.h"
-#define ITERATIONS (10)
+#define ITERATIONS (1)
#define DUMP_TOKENS (0)
@@ -108,6 +108,10 @@ static void printToken(const css_token *token)
case CSS_TOKEN_EOF:
printf("EOF");
break;
+
+ case CSS_TOKEN_LAST_INTERN_LOWER:
+ case CSS_TOKEN_LAST_INTERN:
+ break;
}
printf("\n");