Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
capnproto
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
capnproto
Commits
3cdfbfa8
Commit
3cdfbfa8
authored
Jun 26, 2013
by
Kenton Varda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add script that tests EVERYTHING.
parent
d7be71cf
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
187 additions
and
0 deletions
+187
-0
super-test.sh
super-test.sh
+187
-0
No files found.
super-test.sh
0 → 100755
View file @
3cdfbfa8
#! /bin/bash
set
-euo
pipefail
doit
()
{
echo
"@@@@
$@
"
"
$@
"
}
if
[
$#
-gt
0
]
;
then
if
[
"x
$1
"
==
"xtest"
]
;
then
:
# nothing
elif
[
"x
$1
"
==
"xremote"
]
;
then
if
[
"$#"
-lt
2
]
;
then
echo
"usage:
$0
remote HOST [COMMAND]"
>
&2
exit
1
fi
HOST
=
$2
shift
2
ssh
$HOST
'rm -rf tmp-test-capnp && mkdir tmp-test-capnp && git init tmp-test-capnp'
git push ssh://
$HOST
/~/tmp-test-capnp master:test
ssh
$HOST
"cd tmp-test-capnp && git checkout test && ./super-test.sh
$@
&& cd .. && rm -rf tmp-test-capnp"
exit
0
elif
[
"x
$1
"
==
"xclang"
]
;
then
export
CXX
=
clang++
elif
[
"x
$1
"
==
"xkenton"
]
;
then
cat
<<
__EOF__
=========================================================================
*************************************************************************
_ _ ____ ____ ____
| | (_)_ __ _ ___ __ / ___|/ ___/ ___|
| | | | '_ \| | | \ \/ /____| | _| | | |
| |___| | | | | |_| |> <_____| |_| | |__| |___
|_____|_|_| |_|\__,_/_/\_\ \____|\____\____|
*************************************************************************
=========================================================================
__EOF__
$0
test
$0
clean
cat
<<
__EOF__
=========================================================================
*************************************************************************
_ _ ____ _
| | (_)_ __ _ ___ __ / ___| | __ _ _ __ __ _
| | | | '_ \| | | \ \/ /____| | | |/ _` | '_ \ / _` |
| |___| | | | | |_| |> <_____| |___| | (_| | | | | (_| |
|_____|_|_| |_|\__,_/_/\_\ \____|_|\__,_|_| |_|\__, |
|___/
*************************************************************************
=========================================================================
__EOF__
$0
clang
$0
clean
cat
<<
__EOF__
=========================================================================
*************************************************************************
___ ______ __ ____ _
/ _ \/ ___\ \/ / / ___| | __ _ _ __ __ _
| | | \___ \\ /_____| | | |/ _` | '_ \ / _` |
| |_| |___) / \_____| |___| | (_| | | | | (_| |
\___/|____/_/\_\ \____|_|\__,_|_| |_|\__, |
|___/
*************************************************************************
=========================================================================
__EOF__
$0
remote beat
cat
<<
__EOF__
=========================================================================
*************************************************************************
____ _ _ ___ ____ ___ _____
/ ___|| | | |_ _| _ \ |_ _|_ _|
\___ \| |_| || || |_) | | | | |
___) | _ || || __/ | | | |
|____/|_| |_|___|_| |___| |_|
*************************************************************************
=========================================================================
__EOF__
elif
[
"x
$1
"
==
"xclean"
]
;
then
rm
-rf
tmp-staging
cd
compiler
doit cabal clean
cd
../c++
if
[
-e
Makefile
]
;
then
doit make maintainer-clean
fi
rm
-f
capnproto-
*
.tar.gz samples/addressbook samples/addressbook.capnp.c++
\
samples/addressbook.capnp.h
rm
-rf
gtest
exit
0
elif
[
"x
$1
"
==
"xhelp"
]
;
then
echo
"usage:
$0
[COMMAND]"
echo
"commands:"
echo
" test Runs tests (the default)."
echo
" clang Runs tests using Clang compiler."
echo
" remote HOST Runs tests on HOST via SSH."
echo
" kenton Kenton's meta-test (uses hosts on Kenton's network)."
echo
" clean Delete temporary files that may be left after failure."
echo
" help Prints this help text."
exit
0
else
echo
"unknown command:
$1
"
>
&2
echo
"try:
$0
help"
>
&2
exit
1
fi
fi
rm
-rf
tmp-staging
mkdir
tmp-staging
STAGING
=
$PWD
/tmp-staging
mkdir
$STAGING
/bin
mkdir
$STAGING
/lib
export
PATH
=
$STAGING
/bin:
$PATH
export
LD_LIBRARY_PATH
=
$STAGING
/lib:
$LD_LIBRARY_PATH
echo
"========================================================================="
echo
"Building compiler"
echo
"========================================================================="
cd
compiler
doit cabal
install
--bindir
=
"
$STAGING
/bin"
--libdir
=
"
$STAGING
/lib"
capnproto-compiler.cabal
doit cabal clean
cd
..
echo
"========================================================================="
echo
"Building c++"
echo
"========================================================================="
if
[
"x
`
uname
`
"
==
xDarwin
]
;
then
if
[
!
-e
~/clang-3.2/bin/clang++
]
;
then
echo
"You need to put the clang-3.2 binaries in ~/clang-3.2."
>
&2
exit
1
fi
export
CXX
=
~/clang-3.2/bin/clang++
fi
cd
c++
doit ./setup-autotools.sh |
tr
=
-
doit autoreconf
-i
doit ./configure
--prefix
=
"
$STAGING
"
doit make
-j6
check
echo
"========================================================================="
echo
"Testing c++ install"
echo
"========================================================================="
doit make
install
cd
samples
doit capnpc
-oc
++ addressbook.capnp
-I
"
$STAGING
"
/include
doit
${
CXX
:-
g
++
}
-std
=
c++11
-I
"
$STAGING
"
/include
-L
"
$STAGING
"
/lib
\
addressbook.c++ addressbook.capnp.c++
-lcapnp
-o
addressbook
echo
"@@@@ ./addressbook (in various configurations)"
./addressbook write | ./addressbook
read
./addressbook dwrite | ./addressbook dread
rm
addressbook addressbook.capnp.c++ addressbook.capnp.h
cd
..
doit make uninstall
echo
"========================================================================="
echo
"Testing c++ dist"
echo
"========================================================================="
doit make distcheck
doit make distclean
rm
capnproto-
*
.tar.gz
echo
"========================================================================="
echo
"Testing with -fno-rtti and -fno-exceptions"
echo
"========================================================================="
doit ./configure
CXXFLAGS
=
-fno-rtti
doit make
-j6
check
doit make distclean
doit ./configure
CXXFLAGS
=
-fno-exceptions
doit make
-j6
check
doit make distclean
doit ./configure
CXXFLAGS
=
"-fno-rtti -fno-exceptions"
doit make
-j6
check
doit make maintainer-clean
rm
-rf
"
$STAGING
"
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