Release of libxml-1.1, Daniel.
diff --git a/tester.c b/tester.c
index 927eda2..f2a7cf1 100644
--- a/tester.c
+++ b/tester.c
@@ -33,6 +33,7 @@
 static int debug = 0;
 static int copy = 0;
 static int recovery = 0;
+static int noent = 0;
 
 /*
  * Note: there is a couple of errors introduced on purpose.
@@ -184,7 +185,11 @@
 	else if ((!strcmp(argv[i], "-recover")) ||
 	         (!strcmp(argv[i], "--recover")))
 	    recovery++;
+	else if ((!strcmp(argv[i], "-noent")) ||
+	         (!strcmp(argv[i], "--noent")))
+	    noent++;
     }
+    if (noent != 0) xmlSubstituteEntitiesDefault(1);
     for (i = 1; i < argc ; i++) {
 	if (argv[i][0] != '-') {
 	    parseAndPrintFile(argv[i]);