From 48548c8b3feee14da62d5a5e9932425c72f4afe9 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Tue, 4 May 2010 19:33:45 -0400 Subject: Implement a -u switch to force the test framework to use UDP, not ptys. The good news is that rgression tests all pass with this case and -u off. The bad news is that they fail with -u on. It looks like the switch forces some other bug, previously masked, into the open. --- regress-driver | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'regress-driver') diff --git a/regress-driver b/regress-driver index 691630aa..97b96afb 100755 --- a/regress-driver +++ b/regress-driver @@ -35,7 +35,7 @@ export PATH mode=regress testing=daemon opts="" -while getopts cstrbvo opt +while getopts cstrbuvo opt do case $opt in c) testing=clientlib ;; # Can be 'daemon' @@ -43,6 +43,7 @@ do t) opts="-b $opts" mode=regress ;; # Run regression tests w/baton r) mode=superraw ;; # Run superraw regressions (r=2 mode) b) mode=build ;; # Rebuild regression check files + u) opts="$opts -u" ;; # Force UDP v) mode=view ;; # View result of generating a check file o) opts="$opts $OPTARG" ;; # Pass options to gpsfake esac -- cgit v1.2.1