# absolutely no warranty. See the COPYING and CREDITS files for
# more information.
-. expect.sh
+. ./expect.sh
base_tmpfilename="clos-test-$$-tmp"
tmpfilename="$base_tmpfilename.lisp"
# absolutely no warranty. See the COPYING and CREDITS files for
# more information.
-. expect.sh
+. ./expect.sh
base_tmpfilename="compiler-test-$$-tmp"
tmpfilename="$base_tmpfilename.lisp"
(compile-file "$1")
(sb-ext:quit :unix-status 52))
EOF
- if [ $? != 52]; then
+ if [ $? != 52 ]; then
echo compiler-note $1 test failed: $?
exit 1
fi
# one of the tests below).
SOMETHING_IN_THE_ENVIRONMENT='yes there is'
export SOMETHING_IN_THE_ENVIRONMENT
-export PATH=/some/path/that/does/not/exist:${PATH}
+PATH=/some/path/that/does/not/exist:${PATH}
+export PATH
${SBCL:-sbcl} <<EOF
;; test that $PATH is searched
DEFSIGNAL(SIGBUS);
DEFSIGNAL(SIGCHLD);
DEFSIGNAL(SIGCONT);
-#ifndef LISP_FEATURE_LINUX
+/* FIXME: Maybe #ifdef SIGEMT would be a smarter conditional? */
+#if (!(defined LISP_FEATURE_LINUX) || !((defined LISP_FEATURE_PPC) || (defined LISP_FEATURE_X86)))
DEFSIGNAL(SIGEMT);
#endif
DEFSIGNAL(SIGFPE);
DEFSIGNAL(SIGPROF);
DEFSIGNAL(SIGQUIT);
DEFSIGNAL(SIGSEGV);
-#ifdef LISP_FEATURE_LINUX
+#if ((defined LISP_FEATURE_LINUX) && (defined LISP_FEATURE_X86))
DEFSIGNAL(SIGSTKFLT);
#endif
DEFSIGNAL(SIGSTOP);
-#ifndef LISP_FEATURE_LINUX
+#if (!((defined LISP_FEATURE_LINUX) && (defined LISP_FEATURE_X86)))
DEFSIGNAL(SIGSYS);
#endif
DEFSIGNAL(SIGTERM);
DEFSIGNAL(SIGUSR1);
DEFSIGNAL(SIGUSR2);
DEFSIGNAL(SIGVTALRM);
-#ifdef LISP_FEATURE_SVR4
+#ifdef LISP_FEATURE_SUNOS
DEFSIGNAL(SIGWAITING);
#endif
DEFSIGNAL(SIGWINCH);
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.8.3.27"
+"0.8.3.28"