From eab7f541398afc4d01cd83d3874449f3ef37f457 Mon Sep 17 00:00:00 2001 From: Martin Stein Date: Fri, 16 Nov 2018 17:45:23 +0100 Subject: [PATCH] depot_autopilot: skip libc_getenv on foc x86 When doing the libc_getenv test on autopilot+foc+x86 and one of the subsequent tests crashes the system so it gets rebooted by the run script, the system doesn't come up again. It gets stuck after core initialization. Issue #3027 --- repos/gems/run/depot_autopilot.run | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/repos/gems/run/depot_autopilot.run b/repos/gems/run/depot_autopilot.run index 74513627a..ed0002bf3 100644 --- a/repos/gems/run/depot_autopilot.run +++ b/repos/gems/run/depot_autopilot.run @@ -142,6 +142,15 @@ set skip_test_pkg(test-lx_block) [expr ![have_spec linux]] set skip_test_pkg(test-tcp_bulk_lwip) [expr ![have_spec x86]] set skip_test_pkg(test-tcp_bulk_lxip) [expr ![have_spec x86]] +# +# FIXME +# +# When doing the libc_getenv test on autopilot+foc+x86 and one of the +# subsequent tests crashes the system so it gets rebooted by the run script, +# the system doesn't come up again. It gets stuck after core initialization. +# +set skip_test_pkg(test-libc_getenv) [expr [get_cmd_switch --autopilot] && [have_spec foc] && [have_spec x86]] + ############################################################## ## Local copies of run tool procedures with small adaptions ##