aboutsummaryrefslogtreecommitdiffstats
path: root/all.sh
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-12-29 14:57:01 +0100
committerLoïc Hoguin <[email protected]>2013-12-29 14:57:01 +0100
commit0ec713fc4b185c3cd0f6b2e7ec2c5f198361bddd (patch)
tree2c94026943122708e5d7b1f34da67c9a7ca7799f /all.sh
parent7a274661b297375c8c2c0c1d9cd23bb52185cf84 (diff)
downloadcowboy-0ec713fc4b185c3cd0f6b2e7ec2c5f198361bddd.tar.gz
cowboy-0ec713fc4b185c3cd0f6b2e7ec2c5f198361bddd.tar.bz2
cowboy-0ec713fc4b185c3cd0f6b2e7ec2c5f198361bddd.zip
Now testing on R15B01+ and maint and master git branches
Diffstat (limited to 'all.sh')
-rwxr-xr-xall.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/all.sh b/all.sh
new file mode 100755
index 0000000..8f6032b
--- /dev/null
+++ b/all.sh
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+KERL_INSTALL_PATH=~/erlang
+KERL_RELEASES="r15b01 r15b02 r15b03 r16b r16b01 r16b02 r16b03 maint master"
+
+make build-tests
+
+for rel in $KERL_RELEASES
+do
+ echo
+ echo " TESTING $rel"
+ echo
+ . $KERL_INSTALL_PATH/$rel/activate
+ cp ~/.kerl/builds/$rel/otp_src_*/lib/ssl/test/erl_make_certs.erl \
+ deps/ct_helper/src/
+ CT_OPTS="-label $rel" make tests
+done
+
+xdg-open logs/all_runs.html