Index: tests/configs/.expect/parsebools.txt
===================================================================
--- tests/configs/.expect/parsebools.txt	(revision fd900963cf64515769a7a48264a8066a61a1762d)
+++ tests/configs/.expect/parsebools.txt	(revision fd900963cf64515769a7a48264a8066a61a1762d)
@@ -0,0 +1,93 @@
+no arg:
+yes/no     :false
+Y/N        :false
+y/n        :false
+true/false :false
+set true   :false
+set false  :true
+Child status:
+    WIFEXITED   : 1    WEXITSTATUS : 0    WIFSIGNALED : 0    WTERMSIG    : 0    WCOREDUMP   : 0    WIFSTOPPED  : 0    WSTOPSIG    : 0    WIFCONTINUED: 0
+
+all true/set arg:
+yes/no     :true
+Y/N        :true
+y/n        :true
+true/false :true
+set true   :true
+set false  :false
+Child status:
+    WIFEXITED   : 1    WEXITSTATUS : 0    WIFSIGNALED : 0    WTERMSIG    : 0    WCOREDUMP   : 0    WIFSTOPPED  : 0    WSTOPSIG    : 0    WIFCONTINUED: 0
+
+all false/unset arg:
+yes/no     :false
+Y/N        :false
+y/n        :false
+true/false :false
+set true   :false
+set false  :true
+Child status:
+    WIFEXITED   : 1    WEXITSTATUS : 0    WIFSIGNALED : 0    WTERMSIG    : 0    WCOREDUMP   : 0    WIFSTOPPED  : 0    WSTOPSIG    : 0    WIFCONTINUED: 0
+
+gibberish arg 1:
+Argument 'true' for option y could not be parsed
+
+Usage:
+  parsebools [OPTIONS]...
+testing bool parameters
+  -e, --yesno       test yes/no
+  -y, --YN          test yes/no
+  -n, --yn          test yes/no
+  -t, --truefalse   test true/false
+  -s, --settrue     test set true
+  -u, --setfalse    test set false
+  -h, --help        print this help message
+Child status:
+    WIFEXITED   : 1    WEXITSTATUS : 1    WIFSIGNALED : 0    WTERMSIG    : 0    WCOREDUMP   : 0    WIFSTOPPED  : 0    WSTOPSIG    : 1    WIFCONTINUED: 0
+
+gibberish arg 2:
+Argument 'yes' for option t could not be parsed
+
+Usage:
+  parsebools [OPTIONS]...
+testing bool parameters
+  -e, --yesno       test yes/no
+  -y, --YN          test yes/no
+  -n, --yn          test yes/no
+  -t, --truefalse   test true/false
+  -s, --settrue     test set true
+  -u, --setfalse    test set false
+  -h, --help        print this help message
+Child status:
+    WIFEXITED   : 1    WEXITSTATUS : 1    WIFSIGNALED : 0    WTERMSIG    : 0    WCOREDUMP   : 0    WIFSTOPPED  : 0    WSTOPSIG    : 1    WIFCONTINUED: 0
+
+gibberish arg 3:
+parsebools: invalid option -- '='
+Usage:
+  parsebools [OPTIONS]...
+testing bool parameters
+  -e, --yesno       test yes/no
+  -y, --YN          test yes/no
+  -n, --yn          test yes/no
+  -t, --truefalse   test true/false
+  -s, --settrue     test set true
+  -u, --setfalse    test set false
+  -h, --help        print this help message
+Child status:
+    WIFEXITED   : 1    WEXITSTATUS : 1    WIFSIGNALED : 0    WTERMSIG    : 0    WCOREDUMP   : 0    WIFSTOPPED  : 0    WSTOPSIG    : 1    WIFCONTINUED: 0
+
+gibberish arg 4:
+parsebools: invalid option -- '='
+Usage:
+  parsebools [OPTIONS]...
+testing bool parameters
+  -e, --yesno       test yes/no
+  -y, --YN          test yes/no
+  -n, --yn          test yes/no
+  -t, --truefalse   test true/false
+  -s, --settrue     test set true
+  -u, --setfalse    test set false
+  -h, --help        print this help message
+Child status:
+    WIFEXITED   : 1    WEXITSTATUS : 1    WIFSIGNALED : 0    WTERMSIG    : 0    WCOREDUMP   : 0    WIFSTOPPED  : 0    WSTOPSIG    : 1    WIFCONTINUED: 0
+
+All Done!
Index: tests/configs/.expect/parsenums.txt
===================================================================
--- tests/configs/.expect/parsenums.txt	(revision fd900963cf64515769a7a48264a8066a61a1762d)
+++ tests/configs/.expect/parsenums.txt	(revision fd900963cf64515769a7a48264a8066a61a1762d)
@@ -0,0 +1,140 @@
+no arg:
+int                :-3
+unsigned           :3
+unsigned long      :3
+unsigned long long :3
+double             :3.3
+Child status:
+    WIFEXITED   : 1    WEXITSTATUS : 0    WIFSIGNALED : 0    WTERMSIG    : 0    WCOREDUMP   : 0    WIFSTOPPED  : 0    WSTOPSIG    : 0    WIFCONTINUED: 0
+
+all 0 arg:
+int                :0
+unsigned           :0
+unsigned long      :0
+unsigned long long :0
+double             :0.
+Child status:
+    WIFEXITED   : 1    WEXITSTATUS : 0    WIFSIGNALED : 0    WTERMSIG    : 0    WCOREDUMP   : 0    WIFSTOPPED  : 0    WSTOPSIG    : 0    WIFCONTINUED: 0
+
+negative vals arg:
+int                :-1
+unsigned           :3
+unsigned long      :3
+unsigned long long :3
+double             :-1.
+Child status:
+    WIFEXITED   : 1    WEXITSTATUS : 0    WIFSIGNALED : 0    WTERMSIG    : 0    WCOREDUMP   : 0    WIFSTOPPED  : 0    WSTOPSIG    : 0    WIFCONTINUED: 0
+
+funky notation arg:
+int                :16
+unsigned           :32
+unsigned long      :768
+unsigned long long :16384
+double             :5000000.
+Child status:
+    WIFEXITED   : 1    WEXITSTATUS : 0    WIFSIGNALED : 0    WTERMSIG    : 0    WCOREDUMP   : 0    WIFSTOPPED  : 0    WSTOPSIG    : 0    WIFCONTINUED: 0
+
+big values arg:
+int                :2147483647
+unsigned           :4294967295
+unsigned long      :4294967295
+unsigned long long :18446744073709551615
+double             :5000000.
+Child status:
+    WIFEXITED   : 1    WEXITSTATUS : 0    WIFSIGNALED : 0    WTERMSIG    : 0    WCOREDUMP   : 0    WIFSTOPPED  : 0    WSTOPSIG    : 0    WIFCONTINUED: 0
+
+too big values arg:
+Argument '2147483648' for option i could not be parsed
+
+Usage:
+  parsebools [OPTIONS]...
+testing bool parameters
+  -i, --int                test int
+  -u, --unsigned           test unsigned
+  -l, --unsignedlong       test unsigned long
+  -L, --unsignedlonglong   test unsigned long long
+  -d, --double             test double
+  -h, --help               print this help message
+Child status:
+    WIFEXITED   : 1    WEXITSTATUS : 1    WIFSIGNALED : 0    WTERMSIG    : 0    WCOREDUMP   : 0    WIFSTOPPED  : 0    WSTOPSIG    : 1    WIFCONTINUED: 0
+
+Argument '4294967296' for option u could not be parsed
+
+Usage:
+  parsebools [OPTIONS]...
+testing bool parameters
+  -i, --int                test int
+  -u, --unsigned           test unsigned
+  -l, --unsignedlong       test unsigned long
+  -L, --unsignedlonglong   test unsigned long long
+  -d, --double             test double
+  -h, --help               print this help message
+Child status:
+    WIFEXITED   : 1    WEXITSTATUS : 1    WIFSIGNALED : 0    WTERMSIG    : 0    WCOREDUMP   : 0    WIFSTOPPED  : 0    WSTOPSIG    : 1    WIFCONTINUED: 0
+
+int                :-3
+unsigned           :3
+unsigned long      :4294967296
+unsigned long long :3
+double             :3.3
+Child status:
+    WIFEXITED   : 1    WEXITSTATUS : 0    WIFSIGNALED : 0    WTERMSIG    : 0    WCOREDUMP   : 0    WIFSTOPPED  : 0    WSTOPSIG    : 0    WIFCONTINUED: 0
+
+Argument '18446744073709551616' for option L could not be parsed
+
+Usage:
+  parsebools [OPTIONS]...
+testing bool parameters
+  -i, --int                test int
+  -u, --unsigned           test unsigned
+  -l, --unsignedlong       test unsigned long
+  -L, --unsignedlonglong   test unsigned long long
+  -d, --double             test double
+  -h, --help               print this help message
+Child status:
+    WIFEXITED   : 1    WEXITSTATUS : 1    WIFSIGNALED : 0    WTERMSIG    : 0    WCOREDUMP   : 0    WIFSTOPPED  : 0    WSTOPSIG    : 1    WIFCONTINUED: 0
+
+negative errors arg:
+Argument '-1' for option u could not be parsed
+
+Usage:
+  parsebools [OPTIONS]...
+testing bool parameters
+  -i, --int                test int
+  -u, --unsigned           test unsigned
+  -l, --unsignedlong       test unsigned long
+  -L, --unsignedlonglong   test unsigned long long
+  -d, --double             test double
+  -h, --help               print this help message
+Child status:
+    WIFEXITED   : 1    WEXITSTATUS : 1    WIFSIGNALED : 0    WTERMSIG    : 0    WCOREDUMP   : 0    WIFSTOPPED  : 0    WSTOPSIG    : 1    WIFCONTINUED: 0
+
+Argument '-1' for option l could not be parsed
+
+Usage:
+  parsebools [OPTIONS]...
+testing bool parameters
+  -i, --int                test int
+  -u, --unsigned           test unsigned
+  -l, --unsignedlong       test unsigned long
+  -L, --unsignedlonglong   test unsigned long long
+  -d, --double             test double
+  -h, --help               print this help message
+Child status:
+    WIFEXITED   : 1    WEXITSTATUS : 1    WIFSIGNALED : 0    WTERMSIG    : 0    WCOREDUMP   : 0    WIFSTOPPED  : 0    WSTOPSIG    : 1    WIFCONTINUED: 0
+
+Argument '-1' for option L could not be parsed
+
+Usage:
+  parsebools [OPTIONS]...
+testing bool parameters
+  -i, --int                test int
+  -u, --unsigned           test unsigned
+  -l, --unsignedlong       test unsigned long
+  -L, --unsignedlonglong   test unsigned long long
+  -d, --double             test double
+  -h, --help               print this help message
+Child status:
+    WIFEXITED   : 1    WEXITSTATUS : 1    WIFSIGNALED : 0    WTERMSIG    : 0    WCOREDUMP   : 0    WIFSTOPPED  : 0    WSTOPSIG    : 1    WIFCONTINUED: 0
+
+All Done!
Index: tests/configs/parsebools.cfa
===================================================================
--- tests/configs/parsebools.cfa	(revision fd900963cf64515769a7a48264a8066a61a1762d)
+++ tests/configs/parsebools.cfa	(revision fd900963cf64515769a7a48264a8066a61a1762d)
@@ -0,0 +1,188 @@
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+
+#include <errno.h>
+#include <signal.h>
+
+extern "C" {
+	#include <sys/types.h>
+	#include <sys/wait.h>
+	#include <unistd.h>
+}
+
+#include <parseargs.hfa>
+#include <fstream.hfa>
+
+int true_main(const char * exec);
+
+int main(int argc, char * argv[]) {
+	if(!getenv("CFATEST_FORK_EXEC_TEXT")) return true_main(argv[0]);
+
+	bool YN = false;
+	bool Yn = false;
+	bool yn = false;
+	bool tf = false;
+	bool st = false;
+	bool sf = true;
+
+	cfa_option options[] = {
+		{'e', "yesno",     "test yes/no",     YN, parse_yesno},
+		{'y', "YN",        "test yes/no",     Yn, parse_yesno},
+		{'n', "yn",        "test yes/no",     yn, parse_yesno},
+		{'t', "truefalse", "test true/false", tf, parse_truefalse},
+		{'s', "settrue",   "test set true",   st, parse_settrue},
+		{'u', "setfalse",  "test set false",  sf, parse_setfalse},
+	};
+	int options_cnt = sizeof(options) / sizeof(cfa_option);
+
+	char **left;
+	parse_args( options, options_cnt, "[OPTIONS]...\ntesting bool parameters", left);
+
+	sout | "yes/no     :" | YN;
+	sout | "Y/N        :" | Yn;
+	sout | "y/n        :" | yn;
+	sout | "true/false :" | tf;
+	sout | "set true   :" | st;
+	sout | "set false  :" | sf;
+}
+
+int do_wait(pid_t pid) {
+	int wstatus;
+	int options = 0;
+	pid_t ret = waitpid(pid, &wstatus, options);
+	fflush(stdout);
+	if(ret < 0) {
+		fprintf(stderr, "Fork returned with error: %d '%s'\n", errno, strerror(errno));
+		exit(1);
+	}
+	return wstatus;
+}
+
+pid_t strict_fork(void) {
+	fflush(stdout);
+	pid_t ret = fork();
+	if(ret < 0) {
+		fprintf(stderr, "Fork returned with error: %d '%s'\n", errno, strerror(errno));
+		exit(1);
+	}
+	return ret;
+}
+
+void print_status(int wstatus) {
+	printf("Child status:\n");
+	printf("    WIFEXITED   : %d", WIFEXITED(wstatus));
+	printf("    WEXITSTATUS : %d", WEXITSTATUS(wstatus));
+	printf("    WIFSIGNALED : %d", WIFSIGNALED(wstatus));
+	printf("    WTERMSIG    : %d", WTERMSIG(wstatus));
+	printf("    WCOREDUMP   : %d", WCOREDUMP(wstatus));
+	printf("    WIFSTOPPED  : %d", WIFSTOPPED(wstatus));
+	printf("    WSTOPSIG    : %d", WSTOPSIG(wstatus));
+	printf("    WIFCONTINUED: %d\n", WIFCONTINUED(wstatus));
+}
+
+int true_main(const char * path) {
+	char * env[] = { "CFATEST_FORK_EXEC_TEXT=1", 0p };
+
+	printf("no arg:\n");
+	if(pid_t child = strict_fork(); child == 0) {
+		int ret = execle(path, "parsebools", (const char*)0p, env);
+		if(ret < 0) {
+			fprintf(stderr, "Execl 2 returned with error: %d '%s'\n", errno, strerror(errno));
+			exit(1);
+		}
+	}
+	else {
+		int status = do_wait(child);
+		print_status(status);
+	}
+	printf("\n");
+
+	printf("all true/set arg:\n");
+	if(pid_t child = strict_fork(); child == 0) {
+		int ret = execle(path, "parsebools", "-e=yes", "-y=Y", "-n=y", "-t=true", "-s", "-u", (const char*)0p, env);
+		if(ret < 0) {
+			fprintf(stderr, "Execl 2 returned with error: %d '%s'\n", errno, strerror(errno));
+			exit(1);
+		}
+	}
+	else {
+		int status = do_wait(child);
+		print_status(status);
+	}
+	printf("\n");
+
+	printf("all false/unset arg:\n");
+	if(pid_t child = strict_fork(); child == 0) {
+		int ret = execle(path, "parsebools", "-e=no", "-y=N", "-n=n", "-t=false", (const char*)0p, env);
+		if(ret < 0) {
+			fprintf(stderr, "Execl 2 returned with error: %d '%s'\n", errno, strerror(errno));
+			exit(1);
+		}
+	}
+	else {
+		int status = do_wait(child);
+		print_status(status);
+	}
+	printf("\n");
+
+	printf("gibberish arg 1:\n");
+	if(pid_t child = strict_fork(); child == 0) {
+		int ret = execle(path, "parsebools", "-y=true", (const char*)0p, env);
+		if(ret < 0) {
+			fprintf(stderr, "Execl 2 returned with error: %d '%s'\n", errno, strerror(errno));
+			exit(1);
+		}
+	}
+	else {
+		int status = do_wait(child);
+		print_status(status);
+	}
+	printf("\n");
+
+	printf("gibberish arg 2:\n");
+	if(pid_t child = strict_fork(); child == 0) {
+		int ret = execle(path, "parsebools", "-t=yes", (const char*)0p, env);
+		if(ret < 0) {
+			fprintf(stderr, "Execl 2 returned with error: %d '%s'\n", errno, strerror(errno));
+			exit(1);
+		}
+	}
+	else {
+		int status = do_wait(child);
+		print_status(status);
+	}
+	printf("\n");
+
+	printf("gibberish arg 3:\n");
+	if(pid_t child = strict_fork(); child == 0) {
+		int ret = execle(path, "parsebools", "-s=yes", (const char*)0p, env);
+		if(ret < 0) {
+			fprintf(stderr, "Execl 2 returned with error: %d '%s'\n", errno, strerror(errno));
+			exit(1);
+		}
+	}
+	else {
+		int status = do_wait(child);
+		print_status(status);
+	}
+	printf("\n");
+
+	printf("gibberish arg 4:\n");
+	if(pid_t child = strict_fork(); child == 0) {
+		int ret = execle(path, "parsebools", "-u=yes", (const char*)0p, env);
+		if(ret < 0) {
+			fprintf(stderr, "Execl 2 returned with error: %d '%s'\n", errno, strerror(errno));
+			exit(1);
+		}
+	}
+	else {
+		int status = do_wait(child);
+		print_status(status);
+	}
+	printf("\n");
+
+	printf("All Done!\n");
+
+	return 0;
+}
Index: tests/configs/parsenums.cfa
===================================================================
--- tests/configs/parsenums.cfa	(revision fd900963cf64515769a7a48264a8066a61a1762d)
+++ tests/configs/parsenums.cfa	(revision fd900963cf64515769a7a48264a8066a61a1762d)
@@ -0,0 +1,251 @@
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+
+#include <errno.h>
+#include <signal.h>
+
+extern "C" {
+	#include <sys/types.h>
+	#include <sys/wait.h>
+	#include <unistd.h>
+}
+
+#include <parseargs.hfa>
+#include <fstream.hfa>
+
+int true_main(const char * exec);
+
+int main(int argc, char * argv[]) {
+	if(!getenv("CFATEST_FORK_EXEC_TEXT")) return true_main(argv[0]);
+
+	int i = -3;
+	unsigned u = 3;
+	unsigned long ul = 3;
+	unsigned long long ull = 3;
+	double d = 3.3;
+
+
+	cfa_option options[] = {
+		{ 'i', "int",              "test int",                i   },
+		{ 'u', "unsigned",         "test unsigned",           u   },
+		{ 'l', "unsignedlong",     "test unsigned long",      ul  },
+		{ 'L', "unsignedlonglong", "test unsigned long long", ull },
+		{ 'd', "double",           "test double",             d   },
+	};
+	int options_cnt = sizeof(options) / sizeof(cfa_option);
+
+	char **left;
+	parse_args( options, options_cnt, "[OPTIONS]...\ntesting bool parameters", left);
+
+	sout | "int                :" | i;
+	sout | "unsigned           :" | u;
+	sout | "unsigned long      :" | ul;
+	sout | "unsigned long long :" | ull;
+	sout | "double             :" | d;
+}
+
+int do_wait(pid_t pid) {
+	int wstatus;
+	int options = 0;
+	pid_t ret = waitpid(pid, &wstatus, options);
+	fflush(stdout);
+	if(ret < 0) {
+		fprintf(stderr, "Fork returned with error: %d '%s'\n", errno, strerror(errno));
+		exit(1);
+	}
+	return wstatus;
+}
+
+pid_t strict_fork(void) {
+	fflush(stdout);
+	pid_t ret = fork();
+	if(ret < 0) {
+		fprintf(stderr, "Fork returned with error: %d '%s'\n", errno, strerror(errno));
+		exit(1);
+	}
+	return ret;
+}
+
+void print_status(int wstatus) {
+	printf("Child status:\n");
+	printf("    WIFEXITED   : %d", WIFEXITED(wstatus));
+	printf("    WEXITSTATUS : %d", WEXITSTATUS(wstatus));
+	printf("    WIFSIGNALED : %d", WIFSIGNALED(wstatus));
+	printf("    WTERMSIG    : %d", WTERMSIG(wstatus));
+	printf("    WCOREDUMP   : %d", WCOREDUMP(wstatus));
+	printf("    WIFSTOPPED  : %d", WIFSTOPPED(wstatus));
+	printf("    WSTOPSIG    : %d", WSTOPSIG(wstatus));
+	printf("    WIFCONTINUED: %d\n", WIFCONTINUED(wstatus));
+}
+
+int true_main(const char * path) {
+	char * env[] = { "CFATEST_FORK_EXEC_TEXT=1", 0p };
+
+	printf("no arg:\n");
+	if(pid_t child = strict_fork(); child == 0) {
+		int ret = execle(path, "parsebools", (const char*)0p, env);
+		if(ret < 0) {
+			fprintf(stderr, "Execl 2 returned with error: %d '%s'\n", errno, strerror(errno));
+			exit(1);
+		}
+	}
+	else {
+		int status = do_wait(child);
+		print_status(status);
+	}
+	printf("\n");
+
+	printf("all 0 arg:\n");
+	if(pid_t child = strict_fork(); child == 0) {
+		int ret = execle(path, "parsebools", "-i=0", "-u=0", "-l=0", "-L=0", "-d=0", (const char*)0p, env);
+		if(ret < 0) {
+			fprintf(stderr, "Execl 2 returned with error: %d '%s'\n", errno, strerror(errno));
+			exit(1);
+		}
+	}
+	else {
+		int status = do_wait(child);
+		print_status(status);
+	}
+	printf("\n");
+
+	printf("negative vals arg:\n");
+	if(pid_t child = strict_fork(); child == 0) {
+		int ret = execle(path, "parsebools", "-i=-1", "-d=-1", (const char*)0p, env);
+		if(ret < 0) {
+			fprintf(stderr, "Execl 2 returned with error: %d '%s'\n", errno, strerror(errno));
+			exit(1);
+		}
+	}
+	else {
+		int status = do_wait(child);
+		print_status(status);
+	}
+	printf("\n");
+
+	printf("funky notation arg:\n");
+	if(pid_t child = strict_fork(); child == 0) {
+		int ret = execle(path, "parsebools", "-i=0x10", "-u=0x20", "-l=0x300", "-L=0x4000", "-d=5e6", (const char*)0p, env);
+		if(ret < 0) {
+			fprintf(stderr, "Execl 2 returned with error: %d '%s'\n", errno, strerror(errno));
+			exit(1);
+		}
+	}
+	else {
+		int status = do_wait(child);
+		print_status(status);
+	}
+	printf("\n");
+
+	printf("big values arg:\n");
+	if(pid_t child = strict_fork(); child == 0) {
+		int ret = execle(path, "parsebools", "-i=2147483647", "-u=4294967295", "-l=4294967295", "-L=18446744073709551615", "-d=5e6", (const char*)0p, env);
+		if(ret < 0) {
+			fprintf(stderr, "Execl 2 returned with error: %d '%s'\n", errno, strerror(errno));
+			exit(1);
+		}
+	}
+	else {
+		int status = do_wait(child);
+		print_status(status);
+	}
+	printf("\n");
+
+	printf("too big values arg:\n");
+	if(pid_t child = strict_fork(); child == 0) {
+		int ret = execle(path, "parsebools", "-i=2147483648", (const char*)0p, env);
+		if(ret < 0) {
+			fprintf(stderr, "Execl 2 returned with error: %d '%s'\n", errno, strerror(errno));
+			exit(1);
+		}
+	}
+	else {
+		int status = do_wait(child);
+		print_status(status);
+	}
+	printf("\n");
+
+	if(pid_t child = strict_fork(); child == 0) {
+		int ret = execle(path, "parsebools", "-u=4294967296", (const char*)0p, env);
+		if(ret < 0) {
+			fprintf(stderr, "Execl 2 returned with error: %d '%s'\n", errno, strerror(errno));
+			exit(1);
+		}
+	}
+	else {
+		int status = do_wait(child);
+		print_status(status);
+	}
+	printf("\n");
+
+	if(pid_t child = strict_fork(); child == 0) {
+		int ret = execle(path, "parsebools", "-l=4294967296", (const char*)0p, env);
+		if(ret < 0) {
+			fprintf(stderr, "Execl 2 returned with error: %d '%s'\n", errno, strerror(errno));
+			exit(1);
+		}
+	}
+	else {
+		int status = do_wait(child);
+		print_status(status);
+	}
+	printf("\n");
+
+	if(pid_t child = strict_fork(); child == 0) {
+		int ret = execle(path, "parsebools", "-L=18446744073709551616", (const char*)0p, env);
+		if(ret < 0) {
+			fprintf(stderr, "Execl 2 returned with error: %d '%s'\n", errno, strerror(errno));
+			exit(1);
+		}
+	}
+	else {
+		int status = do_wait(child);
+		print_status(status);
+	}
+	printf("\n");
+
+	printf("negative errors arg:\n");
+	if(pid_t child = strict_fork(); child == 0) {
+		int ret = execle(path, "parsebools", "-u=-1", (const char*)0p, env);
+		if(ret < 0) {
+			fprintf(stderr, "Execl 2 returned with error: %d '%s'\n", errno, strerror(errno));
+			exit(1);
+		}
+	}
+	else {
+		int status = do_wait(child);
+		print_status(status);
+	}
+	printf("\n");
+
+	if(pid_t child = strict_fork(); child == 0) {
+		int ret = execle(path, "parsebools", "-l=-1", (const char*)0p, env);
+		if(ret < 0) {
+			fprintf(stderr, "Execl 2 returned with error: %d '%s'\n", errno, strerror(errno));
+			exit(1);
+		}
+	}
+	else {
+		int status = do_wait(child);
+		print_status(status);
+	}
+	printf("\n");
+
+	if(pid_t child = strict_fork(); child == 0) {
+		int ret = execle(path, "parsebools", "-L=-1", (const char*)0p, env);
+		if(ret < 0) {
+			fprintf(stderr, "Execl 2 returned with error: %d '%s'\n", errno, strerror(errno));
+			exit(1);
+		}
+	}
+	else {
+		int status = do_wait(child);
+		print_status(status);
+	}
+	printf("\n");
+
+	printf("All Done!\n");
+
+	return 0;
+}
