aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2024-04-08 20:26:36 -0500
committerBrent Cook <busterb@gmail.com>2024-04-08 20:26:36 -0500
commite28c00a367d733fe3c6a0dfbcf8607160382e37d (patch)
tree21c369ac4456a5bc61ebb4efd274a42acf2db571 /scripts
parent1ed1b236f2f9e41ae549391a8ee52cc2894736a9 (diff)
parentd88107b3863b05385e15e2dc096a99e7f0749ba9 (diff)
downloadportable-e28c00a367d733fe3c6a0dfbcf8607160382e37d.tar.gz
portable-e28c00a367d733fe3c6a0dfbcf8607160382e37d.tar.bz2
portable-e28c00a367d733fe3c6a0dfbcf8607160382e37d.zip
Land #1047, use file version number in test scripts
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/test10
1 files changed, 6 insertions, 4 deletions
diff --git a/scripts/test b/scripts/test
index d093eab..e389728 100755
--- a/scripts/test
+++ b/scripts/test
@@ -13,6 +13,8 @@ fi
13# generate source tree 13# generate source tree
14./autogen.sh 14./autogen.sh
15 15
16VERSION=`cat VERSION`
17
16if [ "$ARCH" = "" ]; then 18if [ "$ARCH" = "" ]; then
17 ARCH=`uname -m` 19 ARCH=`uname -m`
18fi 20fi
@@ -26,8 +28,8 @@ if [ `uname` = "Darwin" ]; then
26 make -j 4 distcheck 28 make -j 4 distcheck
27 29
28 # test cmake 30 # test cmake
29 tar zxvf libressl-*.tar.gz 31 tar zxvf libressl-$VERSION.tar.gz
30 cd libressl-* 32 cd libressl-$VERSION
31 33
32 ( 34 (
33 mkdir build-static 35 mkdir build-static
@@ -61,8 +63,8 @@ elif [ "$ARCH" = "native" ]; then
61 # make distribution 63 # make distribution
62 make -j 4 distcheck 64 make -j 4 distcheck
63 65
64 tar zxvf libressl-*.tar.gz 66 tar zxvf libressl-$VERSION.tar.gz
65 cd libressl-* 67 cd libressl-$VERSION
66 68
67 69
68 # test cmake and ninja 70 # test cmake and ninja