231d32bf5af124f35d3ec1ba72502b4e061efa82
[lttng-ci.git] / lttng-tools / lttng-tools-master-test-joraj.sh
1 # Create build directory
2 rm -rf $WORKSPACE/build
3 mkdir -p $WORKSPACE/build
4
5 # liburcu
6 URCU_INCS="$WORKSPACE/dependencies/liburcu/build/include/"
7 URCU_LIBS="$WORKSPACE/dependencies/liburcu/build/lib/"
8
9 # lttng-ust
10 UST_INCS="$WORKSPACE/dependencies/lttng-ust/build/include/"
11 UST_LIBS="$WORKSPACE/dependencies/lttng-ust/build/lib/"
12 UST_PREFIX=$WORKSPACE"/dependencies/lttng-ust/build/"
13
14 # babeltrace
15 BABEL_INCS="$WORKSPACE/dependencies/babeltrace/build/include/"
16 BABEL_LIBS="$WORKSPACE/dependencies/babeltrace/build/lib/"
17
18 PREFIX="$WORKSPACE/build"
19
20 CONF_OPTS=""
21 if [ "$conf" = "no_ust" ]
22 then
23 export CPPFLAGS="-I$URCU_INCS"
24 export LDFLAGS="-L$URCU_LIBS"
25 export LD_LIBRARY_PATH="$URCU_LIBS:$BABEL_LIBS:$LD_LIBRARY_PATH"
26 else
27 CONF_OPTS=$CONF_OPTS" --with-lttng-ust-prefix="$UST_PREFIX
28 export CPPFLAGS="-I$URCU_INCS"
29 export LDFLAGS="-L$URCU_LIBS"
30 export LD_LIBRARY_PATH="$URCU_LIBS:$BABEL_LIBS:$LD_LIBRARY_PATH"
31 fi
32
33 ./bootstrap
34
35 case "$conf" in
36 # Currently disabled, ust doesn't seem to be built right for static linking.
37 #static)
38 # echo "Static build"
39 # CONF_OPTS="--enable-static --disable-shared"
40 # ;;
41 python_bindings)
42 echo "Build with python bindings"
43 # We only support bindings built with Python 3
44 export PYTHON="python3"
45 export PYTHON_CONFIG="/usr/bin/python3-config"
46 CONF_OPTS="--enable-python-bindings"
47 ;;
48 no_ust)
49 echo "Build without UST support"
50 CONF_OPTS="--disable-lttng-ust"
51 ;;
52 java_jul)
53 echo "Build with java-jul UST support"
54 CONF_OPTS=$CONF_OPTS" --enable-java-agent-tests-jul --with-java-classpath=$UST_PREFIX/share/java/\*"
55 ;;
56 java_log4j)
57 echo "Build with java-log4j UST support"
58 CONF_OPTS=$CONF_OPTS" --enable-java-agent-tests-log4j --with-java-classpath=/usr/share/java/log4j-1.2.jar"
59 ;;
60 *)
61 echo "Standard build"
62 CONF_OPTS=""
63 ;;
64 esac
65
66 # Build type
67 # oot : out-of-tree build
68 # dist: build via make dist
69 # * : normal tree build
70 #
71 # Make sure to move to the build_path and configure
72 # before continuing
73 echo **************************************************
74 echo $CONF_OPTS
75 echo **************************************************
76
77 BUILD_PATH=$WORKSPACE
78 case "$build" in
79 oot)
80 echo "Out of tree build"
81 BUILD_PATH=$WORKSPACE/oot
82 mkdir -p $BUILD_PATH
83 cd $BUILD_PATH
84 $WORKSPACE/configure --prefix=$PREFIX $CONF_OPTS
85 ;;
86 dist)
87 echo "Distribution out of tree build"
88 BUILD_PATH=`mktemp -d`
89
90 # Initial configure and generate tarball
91 ./configure $CONF_OPTS
92 make dist
93
94 mkdir -p $BUILD_PATH
95 cp *.tar.* $BUILD_PATH/
96 cd $BUILD_PATH
97
98 # Ignore level 1 of tar
99 tar xvf *.tar.* --strip 1
100
101 $BUILD_PATH/configure --prefix=$PREFIX $CONF_OPTS
102 ;;
103 *)
104 BUILD_PATH=$WORKSPACE
105 echo "Standard tree build"
106 $WORKSPACE/configure --prefix=$PREFIX $CONF_OPTS
107 ;;
108 esac
109
110
111 make
112 make install
113
114 # Run tests
115 # Allow core dumps
116 ulimit -c unlimited
117
118 chmod +x $WORKSPACE/dependencies/babeltrace/build/bin/babeltrace
119 export PATH="$PATH:$WORKSPACE/dependencies/babeltrace/build/bin"
120
121 rm -rf $WORKSPACE/tap
122 mkdir -p $WORKSPACE/tap
123 mkdir -p $WORKSPACE/tap/unit
124 mkdir -p $WORKSPACE/tap/fast_regression
125 mkdir -p $WORKSPACE/tap/with_bindings_regression
126
127 cd $BUILD_PATH/tests
128
129 if [ "$conf" = "std" ]
130 then
131 prove --merge --exec '' - < $BUILD_PATH/tests/unit_tests --archive $WORKSPACE/tap/unit/ || true
132 prove --merge --exec '' - < $BUILD_PATH/tests/fast_regression --archive $WORKSPACE/tap/fast_regression/ || true
133 fi
134
135 if [ "$conf" = "java_jul" ]
136 then
137 prove --merge --exec '' - < $BUILD_PATH/tests/unit_tests --archive $WORKSPACE/tap/unit/ || true
138 prove --merge --exec '' - < $BUILD_PATH/tests/fast_regression --archive $WORKSPACE/tap/fast_regression/ || true
139 fi
140
141 if [ "$conf" = "no_ust" ]
142 then
143 # Regression is disabled for now, we need to adjust the testsuite for no ust builds.
144 echo "Testsuite disabled. See job configuration for more info."
145 fi
146
147 if [ "$conf" = "python_bindings" ]
148 then
149 # Disabled due to race conditions in tests
150 echo "Testsuite disabled. See job configuration for more info."
151 prove --merge --exec '' - < $BUILD_PATH/tests/unit_tests --archive $WORKSPACE/tap/unit/ || true
152 prove --merge --exec '' - < $BUILD_PATH/tests/fast_regression --archive $WORKSPACE/tap/fast_regression/ || true
153 prove --merge --exec '' - < $BUILD_PATH/tests/with_bindings_regression --archive $WORKSPACE/tap/with_bindings_regression/ || true
154 fi
155
156 # TAP plugin is having a hard time with .yml files.
157 rm -f $WORKSPACE/tap/unit/meta.yml
158 rm -f $WORKSPACE/tap/fast_regression/meta.yml
159 rm -f $WORKSPACE/tap/with_bindings_regression/meta.yml
160
161 # And also with files without extension, so rename all result to *.tap
162 find $WORKSPACE/tap/unit/ -type f -exec mv {} {}.tap \;
163 find $WORKSPACE/tap/fast_regression/ -type f -exec mv {} {}.tap \;
164 find $WORKSPACE/tap/with_bindings_regression/ -type f -exec mv {} {}.tap \;
165
166 # Cleanup
167 make clean
168
169 # Cleanup rpath and libtool .la files
170 find $WORKSPACE/build/bin -executable -type f -exec chrpath --delete {} \;
171 find $WORKSPACE/build/lib -name "*.so" -exec chrpath --delete {} \;
172 find $WORKSPACE/build/lib -name "*.la" -exec rm -f {} \;
173
174 # Clean temp dir for dist build
175 if [ $build = "dist" ]; then
176 rm -rf $BUILD_PATH
177 fi
This page took 0.034783 seconds and 4 git commands to generate.