File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ echo "Currently in `pwd`"
45
45
(
46
46
mkdir -p _GSL_BUILD && cd _GSL_BUILD
47
47
cmake -DDEBUG=ON -DPYTHON_EXECUTABLE=" $PYTHON2 " ..
48
- $MAKE && ctest --output-on-failure
48
+ $MAKE && ctest --output-on-failure -E " .*socket_streamer.* "
49
49
sudo make install && cd /tmp
50
50
$PYTHON2 -c ' import moose;print(moose.__file__);print(moose.version())'
51
51
)
@@ -60,14 +60,14 @@ if type $PYTHON3 > /dev/null; then
60
60
(
61
61
mkdir -p _GSL_BUILD_PY3 && cd _GSL_BUILD_PY3 && \
62
62
cmake -DPYTHON_EXECUTABLE=" $PYTHON3 " -DDEBUG=ON ..
63
- $MAKE && ctest --output-on-failure
63
+ $MAKE && ctest --output-on-failure -E " .*socket_streamer.* "
64
64
)
65
65
66
66
# BOOST
67
67
(
68
68
mkdir -p _BOOST_BUILD_PY3 && cd _BOOST_BUILD_PY3 && \
69
69
cmake -DWITH_BOOST_ODE=ON -DPYTHON_EXECUTABLE=" $PYTHON3 " ..
70
- $MAKE && ctest --output-on-failure
70
+ $MAKE && ctest --output-on-failure -E " .*socket_streamer.* "
71
71
)
72
72
echo " All done"
73
73
else
Original file line number Diff line number Diff line change @@ -35,14 +35,14 @@ set -e
35
35
&& cmake -DDEBUG=ON \
36
36
-DPYTHON_EXECUTABLE=` which python` ..
37
37
make pylint -j3
38
- make && ctest --output-on-failure
38
+ make && ctest --output-on-failure -E " .*socket_streamer.* "
39
39
40
40
cd .. # Now with boost.
41
41
mkdir -p _BOOST_BUILD && cd _BOOST_BUILD \
42
42
&& cmake -DWITH_BOOST_ODE=ON -DDEBUG=ON \
43
43
-DPYTHON_EXECUTABLE=` which python` ..
44
44
45
- make && ctest --output-on-failure
45
+ make && ctest --output-on-failure -E " .*socket_streamer.* "
46
46
cd ..
47
47
set +e
48
48
You can’t perform that action at this time.
0 commit comments