Module Name: src
Committed By: blymn
Date: Fri Jun 4 23:07:39 UTC 2021
Modified Files:
src/tests/lib/libcurses: debug_test
Log Message:
Fix debug_test so it actually works and does not do damage
* disable blind clearing of /tmp. The comment says this is needed for
getwin/putwin
those tests need to be looked at to correct this.
* remove invalid -I option from director arguments for now.
* fix paths to executables so debug_test will work with installed versions by
default
the previous version was using the src tree locations but basedir was wrong
for that.
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/tests/lib/libcurses/debug_test
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/tests/lib/libcurses/debug_test
diff -u src/tests/lib/libcurses/debug_test:1.4 src/tests/lib/libcurses/debug_test:1.5
--- src/tests/lib/libcurses/debug_test:1.4 Sat Oct 24 04:46:16 2020
+++ src/tests/lib/libcurses/debug_test Fri Jun 4 23:07:39 2021
@@ -8,7 +8,7 @@ INCLUDE_PATH="${BASEDIR}/tests/"
export INCLUDE_PATH
#
CURSES_TRACE_FILE="/tmp/ctrace"
-SLAVE="${BASEDIR}/slave/slave"
+SLAVE="${BASEDIR}/slave"
usage() {
echo "Set up the environment to run the test frame. Option flags:"
@@ -31,10 +31,11 @@ usage() {
# This is needed for getwin/putwin test case and /tmp can be used for any file
# related tests.
-rm -rf /tmp/*
+#rm -rf /tmp/*
#
-ARGS="-T ${BASEDIR} -I ${INCLUDE_PATH} -C ${CHECK_PATH}"
+#ARGS="-T ${BASEDIR} -I ${INCLUDE_PATH} -C ${CHECK_PATH}"
+ARGS="-T ${BASEDIR} -C ${CHECK_PATH}"
#
while getopts cf:L:s:vg opt
do
@@ -90,4 +91,4 @@ then
exit 1
fi
#
-exec ${BASEDIR}/director/director ${ARGS} -s ${SLAVE} "${INCLUDE_PATH}/$1"
+exec ${BASEDIR}/director ${ARGS} -s ${SLAVE} "${INCLUDE_PATH}/$1"