From 58eb3b0886725895f1980582252afcd0ebd7ad33 Mon Sep 17 00:00:00 2001 From: Michael Davis Date: Tue, 13 Feb 2024 15:59:29 -0500 Subject: [PATCH] Suppress export_all warnings in common test suites --- test/ra_dbg_SUITE.erl | 1 + test/ra_directory_SUITE.erl | 1 + test/ra_log_ets_SUITE.erl | 1 + test/ra_log_meta_SUITE.erl | 1 + test/ra_log_props_SUITE.erl | 1 + test/ra_machine_ets_SUITE.erl | 1 + test/ra_props_SUITE.erl | 1 + 7 files changed, 7 insertions(+) diff --git a/test/ra_dbg_SUITE.erl b/test/ra_dbg_SUITE.erl index d5105221..cfeed7af 100644 --- a/test/ra_dbg_SUITE.erl +++ b/test/ra_dbg_SUITE.erl @@ -6,6 +6,7 @@ %% -module(ra_dbg_SUITE). +-compile(nowarn_export_all). -compile(export_all). -include_lib("common_test/include/ct.hrl"). diff --git a/test/ra_directory_SUITE.erl b/test/ra_directory_SUITE.erl index ef6282e1..0d9b5d71 100644 --- a/test/ra_directory_SUITE.erl +++ b/test/ra_directory_SUITE.erl @@ -6,6 +6,7 @@ %% -module(ra_directory_SUITE). +-compile(nowarn_export_all). -compile(export_all). -export([ diff --git a/test/ra_log_ets_SUITE.erl b/test/ra_log_ets_SUITE.erl index 97e7fcad..688623f6 100644 --- a/test/ra_log_ets_SUITE.erl +++ b/test/ra_log_ets_SUITE.erl @@ -1,5 +1,6 @@ -module(ra_log_ets_SUITE). +-compile(nowarn_export_all). -compile(export_all). -export([ diff --git a/test/ra_log_meta_SUITE.erl b/test/ra_log_meta_SUITE.erl index 2e728c62..ae2c7bee 100644 --- a/test/ra_log_meta_SUITE.erl +++ b/test/ra_log_meta_SUITE.erl @@ -6,6 +6,7 @@ %% -module(ra_log_meta_SUITE). +-compile(nowarn_export_all). -compile(export_all). -include_lib("common_test/include/ct.hrl"). diff --git a/test/ra_log_props_SUITE.erl b/test/ra_log_props_SUITE.erl index 72a28119..ace26e71 100644 --- a/test/ra_log_props_SUITE.erl +++ b/test/ra_log_props_SUITE.erl @@ -5,6 +5,7 @@ %% Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term Broadcom refers to Broadcom Inc. and/or its subsidiaries. %% -module(ra_log_props_SUITE). +-compile(nowarn_export_all). -compile(export_all). -include_lib("proper/include/proper.hrl"). diff --git a/test/ra_machine_ets_SUITE.erl b/test/ra_machine_ets_SUITE.erl index 81d018ad..ceb7e53d 100644 --- a/test/ra_machine_ets_SUITE.erl +++ b/test/ra_machine_ets_SUITE.erl @@ -6,6 +6,7 @@ %% -module(ra_machine_ets_SUITE). +-compile(nowarn_export_all). -compile(export_all). -export([ diff --git a/test/ra_props_SUITE.erl b/test/ra_props_SUITE.erl index 8b0f3b73..d8bfe268 100644 --- a/test/ra_props_SUITE.erl +++ b/test/ra_props_SUITE.erl @@ -5,6 +5,7 @@ %% Copyright (c) 2017-2023 Broadcom. All Rights Reserved. The term Broadcom refers to Broadcom Inc. and/or its subsidiaries. %% -module(ra_props_SUITE). +-compile(nowarn_export_all). -compile(export_all). -include("src/ra.hrl").