Commit 6821d580 authored by Evgeniy Paltsev's avatar Evgeniy Paltsev Committed by Christopher Friedt
Browse files

tests: disable logging-related failing tests on qemu_arc_hs6x



Temporary disable logging-related failing tests on qemu_arc_hs6x
until we fix the rootcause so we can enable qemu_arc_hs6x in
upstream verification.

Signed-off-by: default avatarEugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
Signed-off-by: default avatarEvgeniy Paltsev <PaltsevEvgeniy@gmail.com>
parent fcfe597e
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
common:
  filter: CONFIG_QEMU_TARGET or CONFIG_BOARD_NATIVE_POSIX
  tags: cbprintf
  # FIXME: qemu_arc_hs6x excluded, see #38041
  platform_exclude: qemu_arc_hs6x
  integration_platforms:
    - native_posix
tests:
+20 −0
Original line number Diff line number Diff line
@@ -45,52 +45,72 @@ tests:
      - CONFIG_SAMPLE_MODULE_LOG_LEVEL_DBG=y

  logging.log2_api_deferred_overflow_rt_filter:
    # FIXME: qemu_arc_hs6x excluded, see #38041
    platform_exclude: qemu_arc_hs6x
    extra_configs:
      - CONFIG_LOG2_MODE_DEFERRED=y
      - CONFIG_LOG_MODE_OVERFLOW=y
      - CONFIG_LOG_RUNTIME_FILTERING=y

  logging.log2_api_deferred_overflow:
    # FIXME: qemu_arc_hs6x excluded, see #38041
    platform_exclude: qemu_arc_hs6x
    extra_configs:
      - CONFIG_LOG2_MODE_DEFERRED=y
      - CONFIG_LOG_MODE_OVERFLOW=y

  logging.log2_api_deferred_no_overflow:
    # FIXME: qemu_arc_hs6x excluded, see #38041
    platform_exclude: qemu_arc_hs6x
    extra_configs:
      - CONFIG_LOG2_MODE_DEFERRED=y
      - CONFIG_LOG_MODE_OVERFLOW=n

  logging.log2_api_deferred_static_filter:
    # FIXME: qemu_arc_hs6x excluded, see #38041
    platform_exclude: qemu_arc_hs6x
    extra_configs:
      - CONFIG_LOG2_MODE_DEFERRED=y
      - CONFIG_SAMPLE_MODULE_LOG_LEVEL_DBG=y

  logging.log2_api_deferred_func_prefix:
    # FIXME: qemu_arc_hs6x excluded, see #38041
    platform_exclude: qemu_arc_hs6x
    extra_configs:
      - CONFIG_LOG2_MODE_DEFERRED=y
      - CONFIG_SAMPLE_MODULE_LOG_LEVEL_DBG=y
      - CONFIG_LOG_FUNC_NAME_PREFIX_DBG=y

  logging.log2_api_deferred_64b_timestamp:
    # FIXME: qemu_arc_hs6x excluded, see #38041
    platform_exclude: qemu_arc_hs6x
    extra_configs:
      - CONFIG_LOG2_MODE_DEFERRED=y
      - CONFIG_LOG_TIMESTAMP_64BIT=y

  logging.log2_api_immediate:
    # FIXME: qemu_arc_hs6x excluded, see #38041
    platform_exclude: qemu_arc_hs6x
    extra_configs:
      - CONFIG_LOG2_MODE_IMMEDIATE=y

  logging.log2_api_immediate_rt_filter:
    # FIXME: qemu_arc_hs6x excluded, see #38041
    platform_exclude: qemu_arc_hs6x
    extra_configs:
      - CONFIG_LOG2_MODE_IMMEDIATE=y
      - CONFIG_LOG_RUNTIME_FILTERING=y

  logging.log2_api_immediate_static_filter:
    # FIXME: qemu_arc_hs6x excluded, see #38041
    platform_exclude: qemu_arc_hs6x
    extra_configs:
      - CONFIG_LOG2_MODE_IMMEDIATE=y
      - CONFIG_SAMPLE_MODULE_LOG_LEVEL_DBG=y

  logging.log2_api_immediate_64b_timestamp:
    # FIXME: qemu_arc_hs6x excluded, see #38041
    platform_exclude: qemu_arc_hs6x
    extra_configs:
      - CONFIG_LOG2_MODE_IMMEDIATE=y
      - CONFIG_LOG_TIMESTAMP_64BIT=y
+2 −0
Original line number Diff line number Diff line
common:
  filter: CONFIG_QEMU_TARGET or CONFIG_BOARD_NATIVE_POSIX
  tags: log_api logging
  # FIXME: qemu_arc_hs6x excluded, see #38041
  platform_exclude: qemu_arc_hs6x
  integration_platforms:
    - native_posix
tests: