Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
cf4ad01d
Commit
cf4ad01d
authored
Nov 22, 2000
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Point runtest and runcheck targets at new regression test driver.
parent
287fd7a9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
70 deletions
+10
-70
src/test/regress/GNUmakefile
src/test/regress/GNUmakefile
+10
-70
No files found.
src/test/regress/GNUmakefile
View file @
cf4ad01d
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/test/regress/GNUmakefile,v 1.3
1 2000/11/21 23:40:28
petere Exp $
# $Header: /cvsroot/pgsql/src/test/regress/GNUmakefile,v 1.3
2 2000/11/22 13:16:24
petere Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -115,79 +115,19 @@ installcheck: all
# old interfaces follow...
#
# huge extra tests run in target bigtest
#
EXTRA_TESTS
=
numeric_big
#
# run the tests
#
runtest
:
all
ifneq
($(PORTNAME), win)
MULTIBYTE
=
$(MULTIBYTE)
;
export
MULTIBYTE
;
\
$(SHELL)
./regress.sh
$(host_tuple)
2>&1 |
tee
regress.out
else
MULTIBYTE
=
$(MULTIBYTE)
;
export
MULTIBYTE
;
\
./regress.sh
$(host_tuple)
2>&1 |
tee
regress.out
endif
@
echo
"ACTUAL RESULTS OF REGRESSION TEST ARE NOW IN FILE regress.out"
@
echo
""
@
echo
"To run the optional big test(s) too, type 'make bigtest'"
@
echo
"These big tests can take over an hour to complete"
@
echo
"These actually are:
$(EXTRA_TESTS)
"
#
# run the test including the huge extra tests
#
bigtest
:
all
ifneq
($(PORTNAME), win)
MULTIBYTE
=
$(MULTIBYTE)
;
export
MULTIBYTE
;
\
$(SHELL)
./regress.sh
$(host_tuple)
$(EXTRA_TESTS)
2>&1 |
tee
regress.out
else
MULTIBYTE
=
$(MULTIBYTE)
;
export
MULTIBYTE
;
\
./regress.sh
$(host_tuple)
$(EXTRA_TESTS)
2>&1 |
tee
regress.out
endif
@
echo
"ACTUAL RESULTS OF REGRESSION TEST ARE NOW IN FILE regress.out"
runcheck
:
check
runtest
:
installcheck
#
# run the parallel test suite
#
runcheck
:
all
ifneq
($(PORTNAME), win)
MULTIBYTE
=
$(MULTIBYTE)
;
export
MULTIBYTE
;
\
MAKE
=
$(MAKE)
;
export
MAKE
;
\
$(SHELL)
./run_check.sh
$(host_tuple)
else
MULTIBYTE
=
$(MULTIBYTE)
;
export
MULTIBYTE
;
\
MAKE
=
$(MAKE)
;
export
MAKE
;
\
./run_check.sh
$(host_tuple)
endif
@
echo
"ACTUAL RESULTS OF REGRESSION TEST ARE NOW IN FILES run_check.out"
@
echo
"AND regress.out"
@
echo
""
@
echo
"To run the optional big test(s) too, type 'make bigcheck'"
@
echo
"These big tests can take over an hour to complete"
@
echo
"These actually are:
$(EXTRA_TESTS)
"
bigtest
:
$(SHELL)
./pg_regress
--schedule
=
$(srcdir)
/serial_schedule
--multibyte
=
$(MULTIBYTE)
numeric_big
#
# run the test including the huge extra tests
#
bigcheck
:
all
ifneq
($(PORTNAME), win)
MULTIBYTE
=
$(MULTIBYTE)
;
export
MULTIBYTE
;
\
MAKE
=
$(MAKE)
;
export
MAKE
;
\
$(SHELL)
./run_check.sh
$(host_tuple)
$(EXTRA_TESTS)
else
MULTIBYTE
=
$(MULTIBYTE)
;
export
MULTIBYTE
;
\
MAKE
=
$(MAKE)
;
export
MAKE
;
\
./run_check.sh
$(host_tuple)
$(EXTRA_TESTS)
endif
@
echo
"ACTUAL RESULTS OF REGRESSION TEST ARE NOW IN FILES run_check.out"
@
echo
"AND regress.out"
bigcheck
:
$(SHELL)
./pg_regress
--temp-install
--top-builddir
=
$(top_builddir)
--schedule
=
$(srcdir)
/parallel_schedule
--multibyte
=
$(MULTIBYTE)
numeric_big
# clean up
##
## Clean up
##
clean distclean maintainer-clean
:
# things built by `all' target
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment