3nodetest: dont fail because of logs
Juan Batiz-Benet committed
Mar 18, 2015 at 02:11 UTC
5b4f4328fdd7a0658b44a23d14dd2314f2492b66
1 file changed
+2
-2
test/3nodetest/run-test-on-img.sh
+2
-2
@@ -25,11 +25,11 @@ fig up --no-color | tee build/fig.log
25
26
# save the ipfs logs for inspection
27
echo "make save_logs"
28
-make save_logs
28
+make save_logs || true # don't fail
29
30
# save the ipfs logs for inspection
31
echo "make save_profiling_data"
32
-make save_profiling_data
32
+make save_profiling_data || true # don't fail
33
34
# fig up won't report the error using an error code, so we grep the
35
# fig.log file to find out whether the call succeeded