Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
6647ce87
Commit
6647ce87
authored
21 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Exit with non-zero error on thread test failures.
parent
144d828e
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
configure
+8
-4
8 additions, 4 deletions
configure
configure.in
+9
-5
9 additions, 5 deletions
configure.in
with
17 additions
and
9 deletions
configure
+
8
−
4
View file @
6647ce87
...
...
@@ -19164,12 +19164,14 @@ $MAKE -C $srcdir/src/tools/thread clean >&5 ||
( rm -f src/Makefile.global
{ { echo "$as_me:$LINENO: error: Can not clean thread test directory." >&5
echo "$as_me: error: Can not clean thread test directory." >&2;}
{ (exit 1); exit 1; }; })
{ (exit 1); exit 1; }; }) ||
exit $?
$MAKE -C $srcdir/src/tools/thread >&5 ||
( rm -f src/Makefile.global
{ { echo "$as_me:$LINENO: error: Can not build thread test proram." >&5
echo "$as_me: error: Can not build thread test proram." >&2;}
{ (exit 1); exit 1; }; })
{ (exit 1); exit 1; }; }) ||
exit $?
$srcdir/src/tools/thread/thread_test >&5 ||
( rm -f src/Makefile.global
echo "no"
...
...
@@ -19178,12 +19180,14 @@ $srcdir/src/tools/thread/thread_test >&5 ||
echo
{ { echo "$as_me:$LINENO: error: Thread test program failed. Your platform is not thread-safe." >&5
echo "$as_me: error: Thread test program failed. Your platform is not thread-safe." >&2;}
{ (exit 1); exit 1; }; })
{ (exit 1); exit 1; }; }) ||
exit $?
$MAKE -C $srcdir/src/tools/thread clean >&5 ||
( rm -f src/Makefile.global
{ { echo "$as_me:$LINENO: error: Can not clean thread test directory." >&5
echo "$as_me: error: Can not clean thread test directory." >&2;}
{ (exit 1); exit 1; }; })
{ (exit 1); exit 1; }; }) ||
exit $?
echo "yes"
else
{ echo "$as_me:$LINENO: WARNING:
...
...
This diff is collapsed.
Click to expand it.
configure.in
+
9
−
5
View file @
6647ce87
dnl Process this file with autoconf to produce a configure script.
dnl $PostgreSQL: pgsql/configure.in,v 1.33
2
2004/04/26 00:
3
4:
12
momjian Exp $
dnl $PostgreSQL: pgsql/configure.in,v 1.33
3
2004/04/26 00:
4
4:
39
momjian Exp $
dnl
dnl Developers, please strive to achieve this order:
dnl
...
...
@@ -1225,20 +1225,24 @@ AC_MSG_CHECKING([thread safety of required library functions.])
#
$MAKE -C $srcdir/src/tools/thread clean >&5 ||
( rm -f src/Makefile.global
AC_MSG_ERROR([Can not clean thread test directory.]))
AC_MSG_ERROR([Can not clean thread test directory.])) ||
exit $?
$MAKE -C $srcdir/src/tools/thread >&5 ||
( rm -f src/Makefile.global
AC_MSG_ERROR([Can not build thread test proram.]))
AC_MSG_ERROR([Can not build thread test proram.])) ||
exit $?
$srcdir/src/tools/thread/thread_test >&5 ||
( rm -f src/Makefile.global
echo "no"
echo
$srcdir/src/tools/thread/thread_test
echo
AC_MSG_ERROR([Thread test program failed. Your platform is not thread-safe.]))
AC_MSG_ERROR([Thread test program failed. Your platform is not thread-safe.])) ||
exit $?
$MAKE -C $srcdir/src/tools/thread clean >&5 ||
( rm -f src/Makefile.global
AC_MSG_ERROR([Can not clean thread test directory.]))
AC_MSG_ERROR([Can not clean thread test directory.])) ||
exit $?
echo "yes"
else
AC_MSG_WARN([
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment