Commit ae5e3c88 authored by Yann Garcia's avatar Yann Garcia
Browse files

Bug fixed in docker/Dockerfile; Add script to switch in ITS Conformance testing Release 1

parent 3a883fcc
Loading
Loading
Loading
Loading

switch_its_r1.sh

0 → 100755
+54 −0
Original line number Original line Diff line number Diff line
#!/bin/bash

#set -e
set -vx

BASE_PATH=`pwd`

git checkout devel
git submodule update --init --recursive --remote

cd $BASE_PATH/ttcn
git checkout devel

for i in `find $BASE_PATH/ttcn -type d -name "Ats*"`
do
    cd $i
    git checkout devel
done
for i in `find $BASE_PATH/ttcn/Ats* -type d -name "asn1"`
do
    cd $i
    git checkout testing
    SUB_DIRS=`find . -type d`
    if [ "SUB_DIRS" != "" ]
    then
        for j in $SUB_DIRS
        do
            cd $j
            git checkout testing
            cd -
        done
    fi
done

cd $BASE_PATH
if [ ! -f ./titan-test-system-framework ]
then
    git clone --recurse-submodules --single-branch --branch devel https://labs.etsi.org/rep/cti-tools/titan-test-system-framework.git
    cd ./titan-test-system-framework
else
    cd ./titan-test-system-framework
    git checkout devel
fi
cd ./ttcn/LibHttp
ln -sf module_its.mk module.mk

cd $BASE_PATH/ttcn/LibIts
git checkout devel

cd $BASE_PATH
cp ./ttcn/patch_lib_common_titan/module.mk ./ttcn/LibCommon/
cp ./ttcn/patch_lib_common_titan/ttcn/* ./ttcn/LibCommon/ttcn

exit 0
Compare 76f1ea77 to 184eff8a
Original line number Original line Diff line number Diff line
Subproject commit 76f1ea77ad27467cc39300c8599f1c0d37c0be76
Subproject commit 184eff8a35bdecab2980f74a7a4a5ba3f50e637a
Compare 1800c762 to 317cbdc0
Original line number Original line Diff line number Diff line
Subproject commit 1800c762a7dbc5b6edbd8442b1e196035ff29bbc
Subproject commit 317cbdc0bb83dd2077ab37c6280d051c3a21de61
Compare d3e6b266 to de631bbb
Original line number Original line Diff line number Diff line
Subproject commit d3e6b2662c996a8971256c926385d1ca1f9eb0a0
Subproject commit de631bbb72fce519c6b60084a657457849e3ef6d
Compare 4a3ccd70 to 15ee4553
Original line number Original line Diff line number Diff line
Subproject commit 4a3ccd7075a263116a3bed5a2450d63830dcf35a
Subproject commit 15ee4553e9b46b58e7dca42dbde311f90651f6ae
Loading