summaryrefslogtreecommitdiffstats
path: root/src/lib/kadm5/unit-test/Makefile.in
diff options
context:
space:
mode:
authorTom Yu <tlyu@mit.edu>2004-02-13 03:19:30 +0000
committerTom Yu <tlyu@mit.edu>2004-02-13 03:19:30 +0000
commitb65814e4bc39a01bab8f93e2b995cdc3ebef8e1f (patch)
tree32462be4232cb29d3ce1fb845a1bd96cc8747f8e /src/lib/kadm5/unit-test/Makefile.in
parent3772bd7c1af805fd40d5996681a1eea1c0ac8f0a (diff)
downloadkrb5-b65814e4bc39a01bab8f93e2b995cdc3ebef8e1f.tar.gz
krb5-b65814e4bc39a01bab8f93e2b995cdc3ebef8e1f.tar.xz
krb5-b65814e4bc39a01bab8f93e2b995cdc3ebef8e1f.zip
priocntl workaround for Solaris 9 pty-close bug
Implement gross hack to use priocntl to work around the Solaris 9 pty-close bug. Run expect at a higher class "FX" priority than spawned processes, which run at a lower class "FX" priority. "make check" needs to start from a process which has FX priority >= 30 and FX priority limit >= 30. Thanks to Bill Sommerfeld for the hints. ticket: new git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@16069 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/kadm5/unit-test/Makefile.in')
-rw-r--r--src/lib/kadm5/unit-test/Makefile.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/kadm5/unit-test/Makefile.in b/src/lib/kadm5/unit-test/Makefile.in
index d38362bbad..382ac14d13 100644
--- a/src/lib/kadm5/unit-test/Makefile.in
+++ b/src/lib/kadm5/unit-test/Makefile.in
@@ -115,14 +115,16 @@ unit-test-client-body: site.exp test-noauth test-destroy test-handle-client
$(ENV_SETUP) $(RUNTEST) --tool api RPC=1 API=$(CLNTTCL) \
KINIT=$(BUILDTOP)/clients/kinit/kinit \
KDESTROY=$(BUILDTOP)/clients/kdestroy/kdestroy \
- KADMIN_LOCAL=$(BUILDTOP)/kadmin/cli/kadmin.local $(RUNTESTFLAGS)
+ KADMIN_LOCAL=$(BUILDTOP)/kadmin/cli/kadmin.local \
+ PRIOCNTL_HACK=@PRIOCNTL_HACK@ $(RUNTESTFLAGS)
-mv api.log capi.log
-mv api.sum capi.sum
unit-test-server-body: site.exp test-handle-server lock-test
$(ENV_SETUP) $(RUNTEST) --tool api RPC=0 API=$(SRVTCL) \
LOCKTEST=./lock-test \
- KADMIN_LOCAL=$(BUILDTOP)/kadmin/cli/kadmin.local $(RUNTESTFLAGS)
+ KADMIN_LOCAL=$(BUILDTOP)/kadmin/cli/kadmin.local \
+ PRIOCNTL_HACK=@PRIOCNTL_HACK@ $(RUNTESTFLAGS)
-mv api.log sapi.log
-mv api.sum sapi.sum