Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP curl
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
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP curl
Commits
a997d603
Commit
a997d603
authored
24 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
Loic Dachary's updates to get 'make distcheck' work, including running the
test suite
parent
ff8fb8cd
No related branches found
Branches containing commit
Tags
curl-7_12_0
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
CHANGES
+3
-1
3 additions, 1 deletion
CHANGES
Makefile.am
+4
-2
4 additions, 2 deletions
Makefile.am
tests/Makefile.am
+4
-2
4 additions, 2 deletions
tests/Makefile.am
tests/data/Makefile.am
+3
-0
3 additions, 0 deletions
tests/data/Makefile.am
tests/runtests.pl
+3
-2
3 additions, 2 deletions
tests/runtests.pl
with
17 additions
and
7 deletions
CHANGES
+
3
−
1
View file @
a997d603
...
...
@@ -11,7 +11,9 @@ Daniel (8 January 2001)
the separator work again when getting multiple globbed URLs to stdout.
- Worked with Loic Dachary to get the make dist and make distcheck work
correctly.
correctly. The 'maketgz' script is now using the automake generated 'make
dist' when creating release archives. Loic successfully made 'make rpms'
automatically build RPMs!
Loic Dachary (6 January 2001)
- Automated generation of rpm packages, no need to be root.
...
...
This diff is collapsed.
Click to expand it.
Makefile.am
+
4
−
2
View file @
a997d603
...
...
@@ -6,13 +6,15 @@ AUTOMAKE_OPTIONS = foreign no-dependencies
EXTRA_DIST
=
\
CHANGES LEGAL maketgz MITX.txt MPL-1.1.txt
\
config-win32.h reconf packages/README
config-win32.h reconf packages/README
Makefile.dist
SUBDIRS
=
docs lib src include tests packages
# create a root makefile in the distribution:
dist-hook
:
cp
Makefile.dist
$(
distdir
)
/Makefile
cp
$(
srcdir
)
/Makefile.dist
$(
distdir
)
/Makefile
check
:
test
test
:
@
(
cd
tests
;
make quiet-test
)
...
...
This diff is collapsed.
Click to expand it.
tests/Makefile.am
+
4
−
2
View file @
a997d603
...
...
@@ -9,10 +9,12 @@ curl:
@
(
cd
..
;
make
)
test
:
$(
PERL
)
runtests.pl
$(
MAKE
)
-C
data
test
srcdir
=
$(
srcdir
)
$(
PERL
)
$(
srcdir
)
/runtests.pl
quiet-test
:
$(
PERL
)
runtests.pl
-s
-a
$(
MAKE
)
-C
data
test
srcdir
=
$(
srcdir
)
$(
PERL
)
$(
srcdir
)
/runtests.pl
-s
-a
clean
:
rm
-rf
log
...
...
This diff is collapsed.
Click to expand it.
tests/data/Makefile.am
+
3
−
0
View file @
a997d603
all
:
install
:
test
:
[
-f
command1.txt
]
||
ln
-s
$(
srcdir
)
/
*
.txt .
EXTRA_DIST
=
command1.txt error113.txt name17.txt prot8.txt
\
command10.txt error114.txt name18.txt prot9.txt
\
command100.txt error115.txt name19.txt reply1.txt
\
...
...
This diff is collapsed.
Click to expand it.
tests/runtests.pl
+
3
−
2
View file @
a997d603
...
...
@@ -8,6 +8,7 @@
use
strict
;
my
$srcdir
=
$ENV
{'
srcdir
'}
||
'
.
';
my
$HOSTIP
=
"
127.0.0.1
";
my
$HOSTPORT
=
8999
;
# bad name, but this is the HTTP server port
my
$FTPPORT
=
8921
;
# this is the FTP server port
...
...
@@ -108,7 +109,7 @@ sub runhttpserver {
}
if
(
$RUNNING
!=
1
)
{
system
("
perl
.
/httpserver.pl
$HOSTPORT
&
");
system
("
perl
$srcdir
/httpserver.pl
$HOSTPORT
&
");
sleep
1
;
# give it a little time to start
}
else
{
...
...
@@ -149,7 +150,7 @@ sub runftpserver {
}
if
(
$RUNNING
!=
1
)
{
system
("
perl
.
/ftpserver.pl
$FTPPORT
&
");
system
("
perl
$srcdir
/ftpserver.pl
$FTPPORT
&
");
sleep
1
;
# give it a little time to start
}
else
{
...
...
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