aboutsummaryrefslogtreecommitdiffstats
path: root/all.sh
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2014-02-05 16:26:56 +0100
committerLoïc Hoguin <[email protected]>2014-02-05 16:26:56 +0100
commitaa504a1956d65bca0ab2077636ef36e9c0348c2c (patch)
tree2b9dc3fa41557514b260746bd3a4c539d06da630 /all.sh
parent5d292f2cd55223ff3bbea7c221f22bc9eb24a0ae (diff)
downloadcowlib-aa504a1956d65bca0ab2077636ef36e9c0348c2c.tar.gz
cowlib-aa504a1956d65bca0ab2077636ef36e9c0348c2c.tar.bz2
cowlib-aa504a1956d65bca0ab2077636ef36e9c0348c2c.zip
Test cowlib on all releases since R15B, plus maint and master
It passes on everything!
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..48b47ab
--- /dev/null
+++ b/all.sh
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+KERL_INSTALL_PATH=~/erlang
+KERL_RELEASES="r15b r15b01 r15b02 r15b03 r16b r16b01 r16b02 r16b03 r16b03-1 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