SuccessConsole Output

Started by GitLab push by Yann Garcia
Building remotely on build.forge.etsi.org (docker) in workspace /home/jenkins/workspace/Intelligent Transport Systems/STF525_Auto_Interop
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url https://forge.etsi.org/gitlab/ITS/ITS.git # timeout=10
Fetching upstream changes from https://forge.etsi.org/gitlab/ITS/ITS.git
 > git --version # timeout=10
using GIT_SSH to set credentials 
 > git fetch --tags --progress https://forge.etsi.org/gitlab/ITS/ITS.git +refs/heads/*:refs/remotes/origin/*
skipping resolution of commit remotes/origin/STF525, since it originates from another repository
 > git rev-parse refs/remotes/origin/STF525^{commit} # timeout=10
 > git rev-parse refs/remotes/origin/origin/STF525^{commit} # timeout=10
Checking out Revision 086b9e9cdb34b1ce1eb16eda0f2a04597aec512b (refs/remotes/origin/STF525)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 086b9e9cdb34b1ce1eb16eda0f2a04597aec512b
Commit message: "STF545: Execute first EA tests"
 > git rev-list a899b7f9a55dbffecabab78181a713ca455e056b # timeout=10
[STF525_Auto_Interop] $ /bin/bash /tmp/jenkins6970692319513808800.sh
#set -e

cd $(dirname $0)
dirname $0
++ dirname .jenkins.sh
+ cd .

run_dir=`pwd`
pwd
++ pwd
+ run_dir='/home/jenkins/workspace/Intelligent Transport Systems/STF525_Auto_Interop'

# Docker version 2
#cd docker/v2
#./build.sh
#./run.sh

# Docker version 1
cd docker
+ cd docker
./build-container.sh
+ ./build-container.sh

DOCKER_FILE=./Dockerfile
+ DOCKER_FILE=./Dockerfile
if [ -f ${DOCKER_FILE} ]
then
    docker build --tag stf525_its --force-rm .
    if [ "$?" != "0" ]
    then
        echo "Docker build failed: $?"
        exit -1
    fi
    docker image ls -a
    docker inspect stf525_its:latest
    if [ "$?" != "0" ]
    then
        echo "Docker inspect failed: $?"
        exit -1
    fi
else
    exit -2
fi
+ '[' -f ./Dockerfile ']'
+ docker build --tag stf525_its --force-rm .
Sending build context to Docker daemon  36.35kB

Step 1/10 : FROM ubuntu:18.04
 ---> 113a43faa138
Step 2/10 : MAINTAINER ETSI STF 525
 ---> Using cache
 ---> 35335fa56144
Step 3/10 : LABEL description "STF525 Docker Image"
 ---> Using cache
 ---> 3421a6bf6abe
Step 4/10 : ENV TERM linux
 ---> Using cache
 ---> 5e4139ec701d
Step 5/10 : ENV HOSTNAME docker-titan-STF525
 ---> Using cache
 ---> 621ad0cf0adc
Step 6/10 : ARG ssh_pub_key
 ---> Using cache
 ---> 3323fd1fbcec
Step 7/10 : RUN echo "docker-titan-STF525" > /etc/hostname     && DEBIAN_FRONTEND=noninteractive apt-get update     && DEBIAN_FRONTEND=noninteractive apt-get dist-upgrade -y     && DEBIAN_FRONTEND=noninteractive apt-get install software-properties-common -y     && DEBIAN_FRONTEND=noninteractive add-apt-repository ppa:linuxuprising/java -y     && DEBIAN_FRONTEND=noninteractive apt-get update     && DEBIAN_FRONTEND=noninteractive apt-get --allow-unauthenticated install -y       autoconf       bison       build-essential       cmake       curl       dos2unix       doxygen       emacs       expect       flex       g++-8       gcc-8       gdb       git-core       gnutls-bin       graphviz       libglib2.0-dev       libpcap-dev       libgcrypt-dev       libncurses5-dev       libssl-dev       libtool-bin       libtool       libwireshark-dev       libxml2-dev       lsof       ntp       openssh-server       pkg-config       qt5-default       qttools5-dev       qtmultimedia5-dev       libqt5svg5-dev       subversion       sudo       sshpass       tcpdump       texlive-font-utils       tshark       tzdata       valgrind       vim       vsftpd       xutils-dev       tree       unzip       wget       xsltproc     && DEBIAN_FRONTEND=noninteractive apt-get autoremove --purge -y     && DEBIAN_FRONTEND=noninteractive apt-get autoclean     && useradd --create-home --shell /bin/bash --user-group etsi --groups sudo     && echo "etsi:etsi" | chpasswd     && adduser etsi sudo     && cd /home/etsi     && echo "" >> /home/etsi/.bashrc     && echo "export HOME=/home/etsi" >> /home/etsi/.bashrc     && echo "export LD_LIBRARY_PATH=/home/etsi/dev/etsi_its/lib:$LD_LIBRARY_PATH" >> /home/etsi/.bashrc     && echo "export PATH=/home/etsi/bin:$PATH" >> /home/etsi/.bashrc     && echo "cd /home/etsi" >> /home/etsi/.bashrc     && echo ". ./devenv.bash" >> /home/etsi/.bashrc     && . /home/etsi/.bashrc     && mkdir -p bin lib include tmp frameworks docs man dev     && chown etsi:etsi bin lib include tmp frameworks docs man dev
 ---> Using cache
 ---> 940fa6f4f65e
Step 8/10 : USER etsi
 ---> Using cache
 ---> 8d2aa177c75b
Step 9/10 : RUN cd /home/etsi/dev     && git clone -b STF525 --recurse-submodules https://forge.etsi.org/gitlab/ITS/ITS.git ./STF525_Its     && cd /home/etsi/dev/STF525_Its/scripts     && chmod 775 *.bash devenv.bash.*     && cd /home/etsi     && ln -sf /home/etsi/dev/STF525_Its/scripts/devenv.bash.ubuntu /home/etsi/devenv.bash     && ls -ltr /home/etsi     && export HOME=/home/etsi     && cd /home/etsi/frameworks     && git clone https://github.com/vlm/asn1c.git asn1c     && cd asn1c     && test -f configure || autoreconf -iv     && ./configure     && make && sudo make install     && cd /home/etsi/frameworks     && wget 'http://ftp.halifax.rwth-aachen.de/eclipse//technology/epp/downloads/release/oxygen/2/eclipse-cpp-oxygen-2-linux-gtk-x86_64.tar.gz' -Oeclipse-cpp-oxygen-2-linux-gtk-x86_64.tar.gz     && tar -zxvf ./eclipse-cpp-oxygen-2-linux-gtk-x86_64.tar.gz     && rm -f ./eclipse-cpp-oxygen-2-linux-gtk-x86_64.tar.gz     && . /home/etsi/devenv.bash     && cd /home/etsi/dev/STF525_Its/scripts     && ./build_titan.bash     && . /home/etsi/devenv.bash     && ./update_its_project.bash     && cd ${HOME}/dev/etsi_its/src/TestCodec/objs     && ../bin/testcodec_generate_makefile.bash     && ../bin/run_all.bash
 ---> Running in 4040919b2a9a
Cloning into './STF525_Its'...
Submodule 'STF525_ttcn/LibCommon' (https://forge.etsi.org/gitlab/LIBS/LibCommon.git) registered for path 'ttcn/LibCommon'
Submodule 'STF525_ttcn/LibIts' (https://forge.etsi.org/gitlab/LIBS/LibIts.git) registered for path 'ttcn/LibIts'
Cloning into '/home/etsi/dev/STF525_Its/ttcn/LibCommon'...
Cloning into '/home/etsi/dev/STF525_Its/ttcn/LibIts'...
Submodule path 'ttcn/LibCommon': checked out '1c35e012cb65152abd1ab432a82d23a755c1276e'
Submodule path 'ttcn/LibIts': checked out '56d65ed3c8413efdfdd01fc6c6bcb1df5263fa65'
total 32
drwxr-xr-x 2 etsi etsi 4096 Oct  5 11:36 tmp
drwxr-xr-x 2 etsi etsi 4096 Oct  5 11:36 man
drwxr-xr-x 2 etsi etsi 4096 Oct  5 11:36 lib
drwxr-xr-x 2 etsi etsi 4096 Oct  5 11:36 include
drwxr-xr-x 2 etsi etsi 4096 Oct  5 11:36 frameworks
drwxr-xr-x 2 etsi etsi 4096 Oct  5 11:36 docs
drwxr-xr-x 2 etsi etsi 4096 Oct  5 11:36 bin
drwxr-xr-x 3 etsi etsi 4096 Oct  8 06:35 dev
lrwxrwxrwx 1 etsi etsi   52 Oct  8 06:35 devenv.bash -> /home/etsi/dev/STF525_Its/scripts/devenv.bash.ubuntu
Cloning into 'asn1c'...
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal -I m4
autoreconf: configure.ac: tracing
autoreconf: configure.ac: creating directory config
autoreconf: running: libtoolize --copy
libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'config'.
libtoolize: copying file 'config/ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
libtoolize: copying file 'm4/libtool.m4'
libtoolize: copying file 'm4/ltoptions.m4'
libtoolize: copying file 'm4/ltsugar.m4'
libtoolize: copying file 'm4/ltversion.m4'
libtoolize: copying file 'm4/lt~obsolete.m4'
autoreconf: running: /usr/bin/autoconf
autoreconf: running: /usr/bin/autoheader
autoreconf: running: automake --add-missing --copy --no-force
configure.ac:17: installing 'config/ar-lib'
configure.ac:9: installing 'config/compile'
configure.ac:24: installing 'config/config.guess'
configure.ac:24: installing 'config/config.sub'
configure.ac:5: installing 'config/install-sh'
configure.ac:5: installing 'config/missing'
asn1c/Makefile.am: installing 'config/depcomp'
parallel-tests: installing 'config/test-driver'
autoreconf: Leaving directory `.'
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking whether ln -s works... yes
checking whether make sets $(MAKE)... (cached) yes
checking for bison... bison -y
checking for flex... flex
checking lex output file root... lex.yy
checking lex library... -lfl
checking whether yytext is a pointer... yes
checking for ar... ar
checking the archiver (ar) interface... ar
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for fgrep... /bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /bin/dd
checking how to truncate binary pipes... /bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether make supports nested variables... (cached) yes
checking whether C compiler accepts -Wall... yes
checking whether C compiler accepts -Wcast-qual... yes
checking whether C compiler accepts -Wchar-subscripts... yes
checking whether C compiler accepts -Wmissing-prototypes... yes
checking whether C compiler accepts -Wmissing-declarations... yes
checking whether C compiler accepts -Wno-error=attributes... yes
checking whether C compiler accepts -Wno-error=cast-align... yes
checking whether C compiler accepts -Wno-error=visibility... no
checking whether C compiler accepts -Wno-error=parentheses-equality... no
checking whether C compiler accepts -std=gnu99... yes
checking whether C compiler accepts -Wno-error=unused-variable... yes
checking whether to build with code coverage support... no
checking whether C compiler accepts -std=c89... yes
checking whether C compiler accepts -Wpedantic... yes
checking whether C compiler accepts -Wno-long-long... yes
checking whether C compiler and linker accept -fsanitize=undefined... yes
checking whether C compiler accepts -fno-sanitize-recover=undefined... yes
checking whether C compiler and linker accept -fsanitize=unsigned-integer-overflow... no
checking whether C compiler accepts -fno-sanitize-recover=unsigned-integer-overflow... no
checking whether C compiler and linker accept -fsanitize=nullability... no
checking whether C compiler accepts -fno-sanitize-recover=nullability... no
checking whether C compiler accepts -fno-omit-frame-pointer... yes
checking whether C compiler and linker accept -fsanitize=address... yes
checking whether C compiler accepts -fno-omit-frame-pointer... (cached) yes
checking for ANSI C header files... (cached) yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking whether byte ordering is bigendian... no
checking for off_t... yes
checking for size_t... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for __int128... yes
checking for intmax_t... yes
checking size of void *... 8
checking for library containing getopt... none required
checking for strtoimax... yes
checking for strtoll... yes
checking for mergesort... no
checking for mkstemps... yes
checking for timegm... yes
checking whether strcasecmp is declared... yes
checking whether vasprintf is declared... no
checking for pandoc... no
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating tests/tests-c-compiler/check-src/Makefile
config.status: creating tests/tests-asn1c-compiler/Makefile
config.status: creating tests/tests-asn1c-smoke/Makefile
config.status: creating tests/tests-randomized/Makefile
config.status: creating tests/tests-c-compiler/Makefile
config.status: creating tests/tests-skeletons/Makefile
config.status: creating libasn1compiler/Makefile
config.status: creating libasn1common/Makefile
config.status: creating libasn1parser/Makefile
config.status: creating libasn1print/Makefile
config.status: creating libasn1fix/Makefile
config.status: creating doc/docsrc/Makefile
config.status: creating skeletons/Makefile
config.status: creating examples/Makefile
config.status: creating doc/man/Makefile
config.status: creating tests/Makefile
config.status: creating asn1c/Makefile
config.status: creating doc/Makefile
config.status: creating Makefile
config.status: creating config.h
config.status: executing depfiles commands
config.status: executing libtool commands
make  all-recursive
make[1]: Entering directory '/home/etsi/frameworks/asn1c'
Making all in libasn1common
make[2]: Entering directory '/home/etsi/frameworks/asn1c/libasn1common'
  CC       asn1_ref.lo
  CC       asn1_buffer.lo
  CC       asn1_namespace.lo
  CC       genhash.lo
  CCLD     libasn1common.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[2]: Leaving directory '/home/etsi/frameworks/asn1c/libasn1common'
Making all in libasn1parser
make[2]: Entering directory '/home/etsi/frameworks/asn1c/libasn1parser'
  CC       asn1parser.lo
  CC       asn1p_y.lo
  CC       asn1p_l.lo
  CC       asn1p_module.lo
  CC       asn1p_oid.lo
  CC       asn1p_value.lo
  CC       asn1p_expr.lo
  CC       asn1p_xports.lo
  CC       asn1p_constr.lo
  CC       asn1p_param.lo
  CC       asn1p_class.lo
  CC       asn1p_integer.lo
  CCLD     libasn1parser.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[2]: Leaving directory '/home/etsi/frameworks/asn1c/libasn1parser'
Making all in libasn1fix
make[2]: Entering directory '/home/etsi/frameworks/asn1c/libasn1fix'
  CC       asn1fix.lo
  CC       asn1fix_misc.lo
  CC       asn1fix_value.lo
  CC       asn1fix_compat.lo
  CC       asn1fix_constr.lo
  CC       asn1fix_cstring.lo
  CC       asn1fix_retrieve.lo
  CC       asn1fix_bitstring.lo
  CC       asn1fix_constraint.lo
  CC       asn1fix_integer.lo
  CC       asn1fix_crange.lo
  CC       asn1fix_dereft.lo
  CC       asn1fix_derefv.lo
  CC       asn1fix_export.lo
  CC       asn1fix_param.lo
  CC       asn1fix_class.lo
  CC       asn1fix_tags.lo
  CC       asn1fix_enum.lo
  CC       asn1fix_cws.lo
  CC       asn1fix_constraint_compat.lo
  CCLD     libasn1fix.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[2]: Leaving directory '/home/etsi/frameworks/asn1c/libasn1fix'
Making all in libasn1print
make[2]: Entering directory '/home/etsi/frameworks/asn1c/libasn1print'
  CC       asn1print.lo
  CCLD     libasn1print.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[2]: Leaving directory '/home/etsi/frameworks/asn1c/libasn1print'
Making all in libasn1compiler
make[2]: Entering directory '/home/etsi/frameworks/asn1c/libasn1compiler'
  CC       asn1compiler.lo
  CC       asn1c_misc.lo
  CC       asn1c_out.lo
  CC       asn1c_lang.lo
  CC       asn1c_naming.lo
  CC       asn1c_save.lo
asn1c_save.c: In function 'asn1c__save_example_mk_makefile':
asn1c_save.c:235:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
     for(int i = 0; i < argc; i++)
     ^~~
asn1c_save.c:237:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
  safe_fprintf(mkf, "\n\n");
  ^~~~~~~~~~~~
  CC       asn1c_C.lo
  CC       asn1c_constraint.lo
  CC       asn1c_compat.lo
  CC       asn1c_ioc.lo
  CC       asn1c_fdeps.lo
  CCLD     libasn1compiler.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[2]: Leaving directory '/home/etsi/frameworks/asn1c/libasn1compiler'
Making all in asn1c
make[2]: Entering directory '/home/etsi/frameworks/asn1c/asn1c'
  CC       asn1c.o
  CCLD     asn1c
  CC       unber.o
  CCLD     unber
  CC       enber.o
  CCLD     enber
make[2]: Leaving directory '/home/etsi/frameworks/asn1c/asn1c'
Making all in skeletons
make[2]: Entering directory '/home/etsi/frameworks/asn1c/skeletons'
make[2]: Nothing to be done for 'all'.
make[2]: Leaving directory '/home/etsi/frameworks/asn1c/skeletons'
Making all in tests
make[2]: Entering directory '/home/etsi/frameworks/asn1c/tests'
Making all in tests-asn1c-compiler
make[3]: Entering directory '/home/etsi/frameworks/asn1c/tests/tests-asn1c-compiler'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/etsi/frameworks/asn1c/tests/tests-asn1c-compiler'
Making all in tests-skeletons
make[3]: Entering directory '/home/etsi/frameworks/asn1c/tests/tests-skeletons'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/etsi/frameworks/asn1c/tests/tests-skeletons'
Making all in tests-asn1c-smoke
make[3]: Entering directory '/home/etsi/frameworks/asn1c/tests/tests-asn1c-smoke'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/etsi/frameworks/asn1c/tests/tests-asn1c-smoke'
Making all in tests-c-compiler
make[3]: Entering directory '/home/etsi/frameworks/asn1c/tests/tests-c-compiler'
Making all in check-src
make[4]: Entering directory '/home/etsi/frameworks/asn1c/tests/tests-c-compiler/check-src'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/etsi/frameworks/asn1c/tests/tests-c-compiler/check-src'
make[4]: Entering directory '/home/etsi/frameworks/asn1c/tests/tests-c-compiler'
make[4]: Nothing to be done for 'all-am'.
make[4]: Leaving directory '/home/etsi/frameworks/asn1c/tests/tests-c-compiler'
make[3]: Leaving directory '/home/etsi/frameworks/asn1c/tests/tests-c-compiler'
Making all in tests-randomized
make[3]: Entering directory '/home/etsi/frameworks/asn1c/tests/tests-randomized'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/etsi/frameworks/asn1c/tests/tests-randomized'
make[3]: Entering directory '/home/etsi/frameworks/asn1c/tests'
make[3]: Nothing to be done for 'all-am'.
make[3]: Leaving directory '/home/etsi/frameworks/asn1c/tests'
make[2]: Leaving directory '/home/etsi/frameworks/asn1c/tests'
Making all in examples
make[2]: Entering directory '/home/etsi/frameworks/asn1c/examples'
./crfc2asn1.pl ./rfc3280.txt
Found PKIX1Explicit88 at line 5124
=> Saving as rfc3280-PKIX1Explicit88.asn1
Found PKIX1Implicit88 at line 5850
=> Saving as rfc3280-PKIX1Implicit88.asn1
./crfc2asn1.pl ./rfc3525.txt
Found MEDIA-GATEWAY-CONTROL at line 5177
=> Saving as rfc3525-MEDIA-GATEWAY-CONTROL.asn1
./crfc2asn1.pl ./rfc4511.txt
Found Lightweight-Directory-Access-Protocol-V3 at line 2983
=> Saving as rfc4511-Lightweight-Directory-Access-Protocol-V3.asn1
make  all-am
make[3]: Entering directory '/home/etsi/frameworks/asn1c/examples'
make[3]: Nothing to be done for 'all-am'.
make[3]: Leaving directory '/home/etsi/frameworks/asn1c/examples'
make[2]: Leaving directory '/home/etsi/frameworks/asn1c/examples'
Making all in doc
make[2]: Entering directory '/home/etsi/frameworks/asn1c/doc'
Making all in docsrc
make[3]: Entering directory '/home/etsi/frameworks/asn1c/doc/docsrc'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/etsi/frameworks/asn1c/doc/docsrc'
Making all in man
make[3]: Entering directory '/home/etsi/frameworks/asn1c/doc/man'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/etsi/frameworks/asn1c/doc/man'
make[3]: Entering directory '/home/etsi/frameworks/asn1c/doc'
make[3]: Nothing to be done for 'all-am'.
make[3]: Leaving directory '/home/etsi/frameworks/asn1c/doc'
make[2]: Leaving directory '/home/etsi/frameworks/asn1c/doc'
make[2]: Entering directory '/home/etsi/frameworks/asn1c'
make[2]: Leaving directory '/home/etsi/frameworks/asn1c'
make[1]: Leaving directory '/home/etsi/frameworks/asn1c'
sudo: no tty present and no askpass program specified
Removing intermediate container 4040919b2a9a
The command '/bin/sh -c cd /home/etsi/dev     && git clone -b STF525 --recurse-submodules https://forge.etsi.org/gitlab/ITS/ITS.git ./STF525_Its     && cd /home/etsi/dev/STF525_Its/scripts     && chmod 775 *.bash devenv.bash.*     && cd /home/etsi     && ln -sf /home/etsi/dev/STF525_Its/scripts/devenv.bash.ubuntu /home/etsi/devenv.bash     && ls -ltr /home/etsi     && export HOME=/home/etsi     && cd /home/etsi/frameworks     && git clone https://github.com/vlm/asn1c.git asn1c     && cd asn1c     && test -f configure || autoreconf -iv     && ./configure     && make && sudo make install     && cd /home/etsi/frameworks     && wget 'http://ftp.halifax.rwth-aachen.de/eclipse//technology/epp/downloads/release/oxygen/2/eclipse-cpp-oxygen-2-linux-gtk-x86_64.tar.gz' -Oeclipse-cpp-oxygen-2-linux-gtk-x86_64.tar.gz     && tar -zxvf ./eclipse-cpp-oxygen-2-linux-gtk-x86_64.tar.gz     && rm -f ./eclipse-cpp-oxygen-2-linux-gtk-x86_64.tar.gz     && . /home/etsi/devenv.bash     && cd /home/etsi/dev/STF525_Its/scripts     && ./build_titan.bash     && . /home/etsi/devenv.bash     && ./update_its_project.bash     && cd ${HOME}/dev/etsi_its/src/TestCodec/objs     && ../bin/testcodec_generate_makefile.bash     && ../bin/run_all.bash' returned a non-zero code: 1
./run-container.sh $run_dir
+ ./run-container.sh /home/jenkins/workspace/Intelligent Transport Systems/STF525_Auto_Interop
the input device is not a TTY
Finished: SUCCESS